Convert query parameters to camelCase for GET /tasks
endpoint
#57
Labels
duplicate
Marks a topic that has been previously addressed or reported; helps in reducing redundancy
enhancement
Denotes a suggestion or request aimed at improving or adding new features to the project
good first issue
Highlights beginner-friendly tasks, ideal for those looking to contribute for the first time
help wanted
Signals that additional assistance or expertise is needed on a particular issue or feature
wontfix
Indicates that, while acknowledged, the particular issue or request won't be acted upon
Milestone
The GET /tasks endpoint in confluence.js library currently supports several query parameters as described in the Confluence OpenAPI documentation. However, these parameters are currently in a
dash-case
format, which is not consistent with thecamelCase
convention commonly used in JavaScript.The task at hand is to convert all of these parameter names to
camelCase
format. Here are the parameters that need to be renamed:body-format
should bebodyFormat
include-blank-tasks
should beincludeBlankTasks
task-id
should betaskId
space-id
should bespaceId
page-id
should bepageId
blogpost-id
should beblogpostId
created-by
should becreatedBy
assigned-to
should beassignedTo
completed-by
should becompletedBy
created-at-from
should becreatedAtFrom
created-at-to
should becreatedAtTo
due-at-from
should bedueAtFrom
due-at-to
should bedueAtTo
completed-at-from
should becompletedAtFrom
completed-at-to
should becompletedAtTo
By converting these parameter names to camelCase, we will ensure that our library adheres to the common naming conventions of JavaScript, making it more intuitive and easier to use for developers.
Please make sure that this change does not break any existing functionality, and update all relevant function calls and documentations accordingly.
The text was updated successfully, but these errors were encountered: