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.

feat(xrpc-server): export operation types

Mary 853514cf 27720331

+17 -1
+5
.changeset/stale-cats-watch.md
··· 1 + --- 2 + '@atcute/xrpc-server': patch 3 + --- 4 + 5 + export operation types
+12 -1
packages/servers/xrpc-server/lib/main/index.ts
··· 1 1 export * from './response.js'; 2 - export * from './xrpc-handler.js'; 3 2 export * from './router.js'; 4 3 export * from './xrpc-error.js'; 4 + export * from './xrpc-handler.js'; 5 5 6 + export type { 7 + ProcedureConfig, 8 + ProcedureContext, 9 + ProcedureHandler, 10 + QueryConfig, 11 + QueryContext, 12 + QueryHandler, 13 + SubscriptionConfig, 14 + SubscriptionContext, 15 + SubscriptionHandler, 16 + } from './types/operation.js'; 6 17 export * from './types/websocket.js';