confluence.js icon indicating copy to clipboard operation
confluence.js copied to clipboard

Enhancement: add `data` property to `blogPost.updateBlogPost`

Open MrRefactoring opened this issue 1 year ago • 0 comments

This issue tracks the need to enhance the blogPost.updateBlogPost method by including a data property. The data property should have the following structure:

data: {
  id: parameters.updateId, // Required field of type string
  status: parameters.status, // Required field of type: string
  title: parameters.title, // Required field of type: string
  body: parameters.body, // Required field of type: One of [BlogPostBodyWrite, BlogPostNestedBodyWrite]
  version: parameters.version, // Required field of type Version
}

PR should include also typings for updateId, status, title, body, version

Reference:

For more context and detailed information, please refer to the Confluence REST API documentation.

MrRefactoring avatar Jun 30 '23 16:06 MrRefactoring