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: fmt

Mary 2787d43b bd79dfe0

+15 -20
+1 -6
packages/clients/client/CHANGELOG.md
··· 186 186 get them. 187 187 188 188 ```ts 189 - import type { 190 - InferInput, 191 - InferOutput, 192 - InferXRPCBodyInput, 193 - InferXRPCBodyOutput, 194 - } from '@atcute/lexicons'; 189 + import type { InferInput, InferOutput, InferXRPCBodyInput, InferXRPCBodyOutput } from '@atcute/lexicons'; 195 190 196 191 import type { AppBskyActorSearchActors } from '@atcute/bluesky'; 197 192
+14 -14
packages/servers/xrpc-server/lib/main/types/operation.ts
··· 62 62 : { 63 63 request: Request; 64 64 }) & 65 - (TProcedure['params'] extends ObjectSchema 66 - ? { 67 - params: InferOutput<TProcedure['params']>; 68 - } 69 - : { 70 - // params 71 - }) & 72 - (TProcedure['input'] extends XRPCLexBodyParam 73 - ? { 74 - input: InferOutput<TProcedure['input']['schema']>; 75 - } 76 - : { 77 - // input 78 - }); 65 + (TProcedure['params'] extends ObjectSchema 66 + ? { 67 + params: InferOutput<TProcedure['params']>; 68 + } 69 + : { 70 + // params 71 + }) & 72 + (TProcedure['input'] extends XRPCLexBodyParam 73 + ? { 74 + input: InferOutput<TProcedure['input']['schema']>; 75 + } 76 + : { 77 + // input 78 + }); 79 79 80 80 export type ProcedureHandler<TProcedure extends XRPCProcedureMetadata> = ( 81 81 context: ProcedureContext<TProcedure>,