-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Milestone
Description
Branch we are working
All PR should have a target for this branch.
General
- 'urlSuffix' is better to be a configuration option. #35 completed.
- Adjustment of all code instances where
sort?: {};was incorrectly defined #46 - Write integration tests like we already have in the project. #44
- Set
serializeIdsAsStringsto true for all of endpoint use this. #47 - Create
next()function for all paginate endpoints. #110 - Create
getAll...for all paginate endpoints. (return all data recursively got from paginated endpoint) #117
Api
- Enhancement: add
dataproperty toblogPost.createBlogPost#105 - Enhancement: add
dataproperty toblogPost.updateBlogPost#106 - Enhancement: add
dataproperty tocustomContent.createCustomContent#120 - Enhancement: add
dataproperty tocustomContent.updateCustomContent#121 - Enhancement: add
dataproperty topage.createPage#122 - Enhancement: add
dataproperty topage.updatePage#123 - Enhancement: add
dataproperty totask.updateTask#124 - Enhancement: add
dataproperty touser.checkAccessByEmail#125 - Enhancement: add
dataproperty touser.inviteByEmail#126 - Enhancement: Review and determine mandatory parameters for
comment.createFooterCommentmethod #127 - Enhancement: Review and determine mandatory parameters for
comment.createInlineCommentmethod #128 - Convert Dash-Cased Parameters to CamelCase in
getBlogPostById#58 - Convert Dash-Cased Parameters to CamelCase in
getPageFooterComments#59 - Convert Dash-Cased Parameters to CamelCase in
getPageInlineComments#60 - Convert Dash-Cased Parameters to CamelCase in
getBlogPostFooterComments#61 - Convert Dash-Cased Parameters to CamelCase in
getBlogPostInlineComments#62 - Convert Dash-Cased Parameters to CamelCase in
getFooterCommentById#64 - Convert Dash-Cased Parameters to CamelCase in
getFooterCommentChildren#63 - Convert Dash-Cased Parameters to CamelCase in
getInlineCommentById#65 - Convert Dash-Cased Parameters to CamelCase in
getInlineCommentChildren#66 - Convert Dash-Cased Parameters to CamelCase in
getCustomContentByTypeInBlogPost#67 - Convert Dash-Cased Parameters to CamelCase in
getCustomContentByType#68 - Convert Dash-Cased Parameters to CamelCase in
getCustomContentById#69 - Convert Dash-Cased Parameters to CamelCase in
getCustomContentByTypeInPage#70 - Convert Dash-Cased Parameters to CamelCase in
getCustomContentByTypeInSpace#71 - Convert Dash-Cased Parameters to CamelCase in
getLabelPages#72 - Convert Dash-Cased Parameters to CamelCase in
getPages#73 - Convert Dash-Cased Parameters to CamelCase in
getPageById#74 - Convert Dash-Cased Parameters to CamelCase in
getPagesInSpace#75 - Convert Dash-Cased Parameters to CamelCase in
getSpaces#76 - Convert Dash-Cased Parameters to CamelCase in
getSpaceById#77 - Convert Dash-Cased Parameters to CamelCase in
getBlogPostVersions#78 - Convert Dash-Cased Parameters to CamelCase in
getPageVersions#79 - Convert Dash-Cased Parameters to CamelCase in
getCustomContentVersions#80 - Convert Dash-Cased Parameters to CamelCase in
getFooterCommentVersions#81 - Convert Dash-Cased Parameters to CamelCase in
getInlineCommentVersions#82 - Convert Dash-Cased Parameters to CamelCase in
getTasks#83 - Convert Dash-Cased Parameters to CamelCase in
getTaskById#84 -
comment.getFooterCommentByIdbodyneeds to clarify the type. -
comment.updateFooterCommentbodyneeds to clarify the type. -
comment.updateInlineCommentbodyneeds to clarify the type. -
content.convertContentIdsToContentTypescontentIdsparameter should be added to the request.
Models
-
Attachment: clarify types forpageId,blogPostId,customContentId. Mark optional parameters as required when it's needed. -
Body: clarify interface properties and types of these properties. -
UpdateInlineCommentModel: type ofbody? -
UpdateFooterCommentModel: type ofbody? -
Task: clarify types forid,localId,spaceId,pageId,blogPostId. Mark optional parameters as required when it's needed. -
SpaceProperty: clarify type forid. -
Space: clarify types forid,homepageId. -
PrimaryBodyRepresentationclarify properties and properties types. -
PageInlineCommentModel: clarify types forid,pageId. Mark optional parameters as required when it's needed. -
PageCommentModel: clarify types forid,pageId. Mark optional parameters as required when it's needed. -
PageBodyWrite: clarify properties. -
Page: clarify types forid,spaceId,parentId. Mark optional parameters as required when it's needed. -
Label: clarify types forid,name,prefixis optional? -
InviteByEmail: clarify types. -
InlineCommentModel: clarify types forid,blogPostId,pageId,parentCommentId. Mark optional parameters as required when it's needed. -
InlineCommentChildrenModel: clarify types forid,parentCommentId. Mark optional parameters as required when it's needed. -
ContentStatus: replateContentStatusto a list of available statuses. -
FooterCommentModel: clarify types forid,blogPostId,pageId,parentCommentId. Mark optional parameters as required when it's needed. -
CustomContentVersion: Mark optional parameters as required when it's needed. -
CustomContentBodyWrite: check types. -
CustomContent: clarify types forid,spaceId,pageId,blogPostId,customContentId. Mark optional parameters as required when it's needed. -
CreateInlineCommentModel: clarify types forbody,inlineCommentProperties. Mark optional parameters as required when it's needed. -
CreateFooterCommentModel: Mark optional parameters as required when it's needed. -
ContentPropertyUpdateRequest:versionproperty should be clarified. -
ContentIdToContentTypeResponse: clarify the type. -
CommentVersion: Mark optional parameters as required when it's needed. -
CommentBodyWrite: clarify the type. -
ChildrenCommentModelclarify types foid,parentCommentId. Mark optional parameters as required when it's needed. -
ChildPage: clarify types forid,spaceId. Mark optional parameters as required when it's needed. -
ChildCustomContent: clarify types forid,spaceId. Mark optional parameters as required when it's needed. -
CheckAccessByEmail: check types. -
BlogPostVersion: Mark optional parameters as required when it's needed. -
BlogPostInlineCommentModel: clarify types forid,blogPostId. Mark optional parameters as required when it's needed. -
BlogPostCommentModel: clarify types forid,blogPostId. Mark optional parameters as required when it's needed. -
BlogPostBodyWrite: clarify the type. -
BlogPost: clarify types forid,spaceId. Mark optional parameters as required when it's needed. - Wrap
results,_linksto wapper. #45 - Remove unused models.
Paramerters
Special thanks
I would like to extend my gratitude to the following individuals for their contributions and support:
- Fabio Rodriguez made significant contributions to the Version 2 API Client of the confluence.js project. Here are the specific contributions:
Convert Dash-Cased Parameters to CamelCase ingetPageInlineComments#60
Convert Dash-Cased Parameters to CamelCase ingetBlogPostFooterComments#61
Convert Dash-Cased Parameters to CamelCase ingetBlogPostInlineComments#62
Convert Dash-Cased Parameters to CamelCase ingetFooterCommentChildren#63
Convert Dash-Cased Parameters to CamelCase ingetFooterCommentById#64
Convert Dash-Cased Parameters to CamelCase ingetInlineCommentById#65
Convert Dash-Cased Parameters to CamelCase ingetInlineCommentChildren#66
Convert Dash-Cased Parameters to CamelCase ingetCustomContentByTypeInBlogPost#67
Convert Dash-Cased Parameters to CamelCase ingetCustomContentByType#68
Convert Dash-Cased Parameters to CamelCase ingetCustomContentById#69
Convert Dash-Cased Parameters to CamelCase ingetCustomContentByTypeInPage#70
Convert Dash-Cased Parameters to CamelCase ingetCustomContentByTypeInSpace#71
Convert Dash-Cased Parameters to CamelCase ingetLabelPages#72
Convert Dash-Cased Parameters to CamelCase ingetPages#73
Convert Dash-Cased Parameters to CamelCase ingetPageById#74
Convert Dash-Cased Parameters to CamelCase ingetPagesInSpace#75
Convert Dash-Cased Parameters to CamelCase ingetSpaces#76
Convert Dash-Cased Parameters to CamelCase ingetSpaceById#77
Convert Dash-Cased Parameters to CamelCase ingetBlogPostVersions#78
Convert Dash-Cased Parameters to CamelCase ingetPageVersions#79
Convert Dash-Cased Parameters to CamelCase ingetCustomContentVersions#80
Convert Dash-Cased Parameters to CamelCase ingetFooterCommentVersions#81
Convert Dash-Cased Parameters to CamelCase ingetTaskById#84
- Augustus Thomas for his contribution to making Version 2 API Client.
Convert Dash-Cased Parameters to CamelCase ingetBlogPostById#58 - Haider Zaidi for his contribution to making Version 2 API Client.
Convert Dash-Cased Parameters to CamelCase ingetTasks#83 - mukultotla for his contribution to making Version 2 API Client.
Convert Dash-Cased Parameters to CamelCase ingetInlineCommentVersions#82 - Kunal Virk for his contribution to making Version 2 API Client.
Convert Dash-Cased Parameters to CamelCase ingetPageFooterComments#59
Metadata
Metadata
Assignees
Labels
No labels
Projects
Status
In Progress