Nurama Developers
Namespaces

blogPosts

Methods and types of the `blogPosts` namespace (`client.blogPosts` / `bot.blogPosts`).

Functions

default()

function default(client): {
  listBlogPosts: Promise<BlogPostListResponse>;
};

Read-only blog feed (Nurama News, shown on the web app's /news page). Auth: any signed-in user. No workspace coupling — the feed is platform-level, identical for every user.

The server normalises the post payload and sanitises post HTML, so the returned bodyHtml is safe to render directly.

Parameters

ParameterType
clientdefault

Returns

NameTypeDescription
listBlogPosts()(params?) => Promise<BlogPostListResponse>List the most recent Nurama News posts.

On this page