···318318 const result = cache.normalize(outputSchema, response);
319319320320 // author should be normalized
321321- const author = cache.get(AppBskyActorDefs.profileViewBasicSchema, sampleFeedResponse.feed[0].post.author.did);
321321+ const author = cache.get(
322322+ AppBskyActorDefs.profileViewBasicSchema,
323323+ sampleFeedResponse.feed[0].post.author.did,
324324+ );
322325 expect(author).toBeDefined();
323326 expect(author?.handle).toBe('thatmc.bsky.social');
324327···382385 const result1 = normalizeResponse(response1);
383386384387 expect(cache.get(AppBskyFeedDefs.postViewSchema, sampleFeedResponse.feed[0].post.uri)).toBeDefined();
385385- expect(result1.feed[0].post).toBe(cache.get(AppBskyFeedDefs.postViewSchema, sampleFeedResponse.feed[0].post.uri));
388388+ expect(result1.feed[0].post).toBe(
389389+ cache.get(AppBskyFeedDefs.postViewSchema, sampleFeedResponse.feed[0].post.uri),
390390+ );
386391387392 // use the same normalizer again
388393 const response2 = structuredClone(sampleFeedResponse);
+1-6
packages/definitions/bluesky/CHANGELOG.md
···295295 get them.
296296297297 ```ts
298298- import type {
299299- InferInput,
300300- InferOutput,
301301- InferXRPCBodyInput,
302302- InferXRPCBodyOutput,
303303- } from '@atcute/lexicons';
298298+ import type { InferInput, InferOutput, InferXRPCBodyInput, InferXRPCBodyOutput } from '@atcute/lexicons';
304299305300 import type { AppBskyActorSearchActors } from '@atcute/bluesky';
306301
+1-6
packages/definitions/ozone/CHANGELOG.md
···269269 get them.
270270271271 ```ts
272272- import type {
273273- InferInput,
274274- InferOutput,
275275- InferXRPCBodyInput,
276276- InferXRPCBodyOutput,
277277- } from '@atcute/lexicons';
272272+ import type { InferInput, InferOutput, InferXRPCBodyInput, InferXRPCBodyOutput } from '@atcute/lexicons';
278273279274 import type { AppBskyActorSearchActors } from '@atcute/bluesky';
280275
+1-2
packages/oauth/browser-client/README.md
···140140longer-lived sessions, set up a [client assertion backend][client-assertion-backend] to enable
141141**confidential client mode**.
142142143143-[client-assertion-backend]:
144144- https://github.com/bluesky-social/proposals/tree/main/0010-client-assertion-backend
143143+[client-assertion-backend]: https://github.com/bluesky-social/proposals/tree/main/0010-client-assertion-backend
145144146145add `fetchClientAssertion` to your config. the backend API is entirely up to you - this is just one
147146example:
+3-2
packages/servers/xrpc-server-deno/README.md
···33Deno WebSocket adapter for [`@atcute/xrpc-server`](../xrpc-server/).
4455```sh
66-deno add jsr:@aspect/xrpc-server-deno
66+deno add npm:@atcute/xrpc-server-deno
77```
8899-see the [subscriptions section](../xrpc-server/#subscriptions) in the main package for usage details.
99+see the [subscriptions section](../xrpc-server/#subscriptions) in the main package for usage
1010+details.
10111112```ts
1213import { XRPCRouter } from '@atcute/xrpc-server';