···11+---
22+'@atcute/lexicon-community': minor
33+'@atcute/whitewind': minor
44+'@atcute/bluemoji': minor
55+'@atcute/atproto': minor
66+'@atcute/bluesky': minor
77+'@atcute/ozone': minor
88+'@atcute/lex-cli': minor
99+---
1010+1111+bring back convenient interfaces for XRPC operations
1212+1313+in hindsight, it was a big mistake making substituting `AppBskyFeedGetTimeline.Output` for
1414+`InferXRPCBodyInput<AppBskyFeedGetTimeline.mainSchema['output']>`!
1515+1616+the change was prompted because lexicon documents do not reserve names for the code generator's
1717+types, you could have a document defining a query and a type named `output`, and you'd basically
1818+wreck havoc on the codegen itself.
1919+2020+but clearly these convenient interfaces are still worth having, so while it now exists, the
2121+compromise is that these interfaces now have been renamed to ensure they don't conflict with any
2222+definitions ever:
2323+2424+- `Params` to `$params`, for query parameters
2525+- `Input` to `$input`, for request body
2626+- `Output` to `$output`, for response body