···1111import * as PubLeafletBlocksImage from './types/pub/leaflet/blocks/image'
1212import * as PubLeafletBlocksText from './types/pub/leaflet/blocks/text'
1313import * as PubLeafletPagesLinearDocument from './types/pub/leaflet/pages/linearDocument'
1414+import * as PubLeafletRichtextFacet from './types/pub/leaflet/richtext/facet'
1415import * as ComAtprotoLabelDefs from './types/com/atproto/label/defs'
1516import * as ComAtprotoRepoApplyWrites from './types/com/atproto/repo/applyWrites'
1617import * as ComAtprotoRepoCreateRecord from './types/com/atproto/repo/createRecord'
···3132export * as PubLeafletBlocksImage from './types/pub/leaflet/blocks/image'
3233export * as PubLeafletBlocksText from './types/pub/leaflet/blocks/text'
3334export * as PubLeafletPagesLinearDocument from './types/pub/leaflet/pages/linearDocument'
3535+export * as PubLeafletRichtextFacet from './types/pub/leaflet/richtext/facet'
3436export * as ComAtprotoLabelDefs from './types/com/atproto/label/defs'
3537export * as ComAtprotoRepoApplyWrites from './types/com/atproto/repo/applyWrites'
3638export * as ComAtprotoRepoCreateRecord from './types/com/atproto/repo/createRecord'
···8587 publication: PublicationRecord
8688 blocks: PubLeafletBlocksNS
8789 pages: PubLeafletPagesNS
9090+ richtext: PubLeafletRichtextNS
88918992 constructor(client: XrpcClient) {
9093 this._client = client
9194 this.blocks = new PubLeafletBlocksNS(client)
9295 this.pages = new PubLeafletPagesNS(client)
9696+ this.richtext = new PubLeafletRichtextNS(client)
9397 this.document = new DocumentRecord(client)
9498 this.publication = new PublicationRecord(client)
9599 }
···104108}
105109106110export class PubLeafletPagesNS {
111111+ _client: XrpcClient
112112+113113+ constructor(client: XrpcClient) {
114114+ this._client = client
115115+ }
116116+}
117117+118118+export class PubLeafletRichtextNS {
107119 _client: XrpcClient
108120109121 constructor(client: XrpcClient) {