---------------------------------------------------------------------- This is the API documentation for the gdtest_sec_blog_user_index library. ---------------------------------------------------------------------- ## Functions Public functions publish(title: str, body: str) -> dict Publish a blog post. Parameters ---------- title : str The post title. body : str The post body. Returns ------- dict The published post record. Examples -------- >>> publish("Hello", "World") {'title': 'Hello', 'body': 'World', 'status': 'published'} draft(title: str) -> dict Create a draft post. Parameters ---------- title : str The draft title. Returns ------- dict The draft post record. Examples -------- >>> draft("WIP") {'title': 'WIP', 'status': 'draft'}