···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-```
+18
packages/definitions/bluesky/CHANGELOG.md
···11# @atcute/bluesky
2233+## 3.3.0
44+55+### Minor Changes
66+77+- 962ef11: expose record and embed limits as constants
88+99+ this is a bit of an experiment, the library now exposes the limits set by records and interfaces
1010+ and exposes them as constants that you could easily pull in to your clients.
1111+1212+ ```ts
1313+ import { feedPost } from '@atcute/bluesky/limits';
1414+1515+ // check if post text exceeds the limit
1616+ if (getGraphemeLength(text) > feedPost.text.maxGraphemes) {
1717+ // text is too long
1818+ }
1919+ ```
2020+321## 3.2.21
422523### Patch Changes