···11+---
22+'@atcute/bluesky': minor
33+---
44+55+expose record and embed limits as constants
66+77+this is a bit of an experiment, the library now exposes the limits set by records and interfaces and
88+exposes them as constants that you could easily pull in to your clients.
99+1010+```ts
1111+import { feedPost } from '@atcute/bluesky/limits';
1212+1313+// check if post text exceeds the limit
1414+if (getGraphemeLength(text) > feedPost.text.maxGraphemes) {
1515+ // text is too long
1616+}
1717+```