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: bump versions

Mary 7c8ef9f0 8ed5ee91

+81 -58
-5
.changeset/chubby-news-stick.md
··· 1 - --- 2 - '@atcute/uint8array': patch 3 - --- 4 - 5 - add getUtf8Length
-6
.changeset/eight-bears-cover.md
··· 1 - --- 2 - '@atcute/bluesky': patch 3 - '@atcute/ozone': patch 4 - --- 5 - 6 - pull latest Bluesky lexicons
-7
.changeset/hip-views-behave.md
··· 1 - --- 2 - '@atcute/oauth-browser-client': patch 3 - --- 4 - 5 - replace IdentityResolver with ActorResolver 6 - 7 - not marking the functions as deprecated yet, I think those can come later.
-5
.changeset/quiet-poets-walk.md
··· 1 - --- 2 - '@atcute/leaflet': patch 3 - --- 4 - 5 - pull latest Leaflet lexicons
-5
.changeset/sharp-lies-cheer.md
··· 1 - --- 2 - '@atcute/identity-resolver': minor 3 - --- 4 - 5 - introduce ActorResolver interface
-5
.changeset/shiny-hotels-glow.md
··· 1 - --- 2 - '@atcute/lexicon-doc': patch 3 - --- 4 - 5 - rectify permission set validation once again
-5
.changeset/slick-steaks-hide.md
··· 1 - --- 2 - '@atcute/pckt': patch 3 - --- 4 - 5 - pull latest pckt lexicons
-5
.changeset/thick-paws-fly.md
··· 1 - --- 2 - '@atcute/uint8array': patch 3 - --- 4 - 5 - improve UTF-8 decode for Node.js
-5
.changeset/wise-banks-shine.md
··· 1 - --- 2 - '@atcute/leaflet': patch 3 - --- 4 - 5 - pull latest Leaflet lexicons
+12 -1
packages/definitions/bluesky/CHANGELOG.md
··· 1 1 # @atcute/bluesky 2 2 3 + ## 3.2.12 4 + 5 + ### Patch Changes 6 + 7 + - 45fdf38: pull latest Bluesky lexicons 8 + 3 9 ## 3.2.11 4 10 5 11 ### Patch Changes ··· 289 295 get them. 290 296 291 297 ```ts 292 - import type { InferInput, InferOutput, InferXRPCBodyInput, InferXRPCBodyOutput } from '@atcute/lexicons'; 298 + import type { 299 + InferInput, 300 + InferOutput, 301 + InferXRPCBodyInput, 302 + InferXRPCBodyOutput, 303 + } from '@atcute/lexicons'; 293 304 294 305 import type { AppBskyActorSearchActors } from '@atcute/bluesky'; 295 306
+1 -1
packages/definitions/bluesky/package.json
··· 1 1 { 2 2 "type": "module", 3 3 "name": "@atcute/bluesky", 4 - "version": "3.2.11", 4 + "version": "3.2.12", 5 5 "description": "Bluesky (app.bsky.* and chat.bsky.*) schema definitions", 6 6 "keywords": [ 7 7 "atcute",
+7
packages/definitions/leaflet/CHANGELOG.md
··· 1 1 # @atcute/leaflet 2 2 3 + ## 1.0.13 4 + 5 + ### Patch Changes 6 + 7 + - 8ed5ee9: pull latest Leaflet lexicons 8 + - 327be13: pull latest Leaflet lexicons 9 + 3 10 ## 1.0.12 4 11 5 12 ### Patch Changes
+1 -1
packages/definitions/leaflet/package.json
··· 1 1 { 2 2 "type": "module", 3 3 "name": "@atcute/leaflet", 4 - "version": "1.0.12", 4 + "version": "1.0.13", 5 5 "description": "Leaflet (pub.leaflet.*) schema definitions", 6 6 "keywords": [ 7 7 "atcute",
+14 -1
packages/definitions/ozone/CHANGELOG.md
··· 1 1 # @atcute/ozone 2 2 3 + ## 3.1.13 4 + 5 + ### Patch Changes 6 + 7 + - 45fdf38: pull latest Bluesky lexicons 8 + - Updated dependencies [45fdf38] 9 + - @atcute/bluesky@3.2.12 10 + 3 11 ## 3.1.12 4 12 5 13 ### Patch Changes ··· 261 269 get them. 262 270 263 271 ```ts 264 - import type { InferInput, InferOutput, InferXRPCBodyInput, InferXRPCBodyOutput } from '@atcute/lexicons'; 272 + import type { 273 + InferInput, 274 + InferOutput, 275 + InferXRPCBodyInput, 276 + InferXRPCBodyOutput, 277 + } from '@atcute/lexicons'; 265 278 266 279 import type { AppBskyActorSearchActors } from '@atcute/bluesky'; 267 280
+1 -1
packages/definitions/ozone/package.json
··· 1 1 { 2 2 "type": "module", 3 3 "name": "@atcute/ozone", 4 - "version": "3.1.12", 4 + "version": "3.1.13", 5 5 "description": "Ozone (tools.ozone.*) scheam definitions", 6 6 "keywords": [ 7 7 "atcute",
+7
packages/definitions/pckt/CHANGELOG.md
··· 1 + # @atcute/pckt 2 + 3 + ## 0.1.1 4 + 5 + ### Patch Changes 6 + 7 + - 2d0a854: pull latest pckt lexicons
+1 -1
packages/definitions/pckt/package.json
··· 1 1 { 2 2 "type": "module", 3 3 "name": "@atcute/pckt", 4 - "version": "0.1.0", 4 + "version": "0.1.1", 5 5 "description": "pckt (blog.pckt.*) schema definitions", 6 6 "keywords": [ 7 7 "atcute",
+6
packages/identity/identity-resolver/CHANGELOG.md
··· 1 1 # @atcute/identity-resolver 2 2 3 + ## 1.2.0 4 + 5 + ### Minor Changes 6 + 7 + - 9c8a343: introduce ActorResolver interface 8 + 3 9 ## 1.1.4 4 10 5 11 ### Patch Changes
+1 -1
packages/identity/identity-resolver/package.json
··· 1 1 { 2 2 "type": "module", 3 3 "name": "@atcute/identity-resolver", 4 - "version": "1.1.4", 4 + "version": "1.2.0", 5 5 "description": "atproto handle and DID document resolution", 6 6 "keywords": [ 7 7 "atproto",
+6
packages/lexicons/lexicon-doc/CHANGELOG.md
··· 1 1 # @atcute/lexicon-doc 2 2 3 + ## 2.0.5 4 + 5 + ### Patch Changes 6 + 7 + - 32c0da6: rectify permission set validation once again 8 + 3 9 ## 2.0.4 4 10 5 11 ### Patch Changes
+1 -1
packages/lexicons/lexicon-doc/package.json
··· 1 1 { 2 2 "type": "module", 3 3 "name": "@atcute/lexicon-doc", 4 - "version": "2.0.4", 4 + "version": "2.0.5", 5 5 "description": "type definitions and schemas for atproto lexicon documents", 6 6 "license": "0BSD", 7 7 "repository": {
+7
packages/misc/uint8array/CHANGELOG.md
··· 1 1 # @atcute/uint8array 2 2 3 + ## 1.0.6 4 + 5 + ### Patch Changes 6 + 7 + - a562b63: add getUtf8Length 8 + - 1b2c79f: improve UTF-8 decode for Node.js 9 + 3 10 ## 1.0.5 4 11 5 12 ### Patch Changes
+1 -1
packages/misc/uint8array/package.json
··· 1 1 { 2 2 "type": "module", 3 3 "name": "@atcute/uint8array", 4 - "version": "1.0.5", 4 + "version": "1.0.6", 5 5 "description": "uint8array utilities", 6 6 "license": "0BSD", 7 7 "repository": {
+14
packages/oauth/browser-client/CHANGELOG.md
··· 1 1 # @atcute/oauth-browser-client 2 2 3 + ## 2.0.2 4 + 5 + ### Patch Changes 6 + 7 + - 18afebb: replace IdentityResolver with ActorResolver 8 + 9 + not marking the functions as deprecated yet, I think those can come later. 10 + 11 + - Updated dependencies [a562b63] 12 + - Updated dependencies [9c8a343] 13 + - Updated dependencies [1b2c79f] 14 + - @atcute/uint8array@1.0.6 15 + - @atcute/identity-resolver@1.2.0 16 + 3 17 ## 2.0.1 4 18 5 19 ### Patch Changes
+1 -1
packages/oauth/browser-client/package.json
··· 1 1 { 2 2 "type": "module", 3 3 "name": "@atcute/oauth-browser-client", 4 - "version": "2.0.1", 4 + "version": "2.0.2", 5 5 "description": "minimal OAuth browser client implementation for AT Protocol", 6 6 "license": "0BSD", 7 7 "repository": {