@solidexpert/comment-api
Advanced tools
Comparing version 1.0.51 to 1.0.53
@@ -17,2 +17,7 @@ /** | ||
/** | ||
* Identifier of the comment to be received | ||
* format: uuid | ||
*/ | ||
id?: string; | ||
/** | ||
* The requested API version | ||
@@ -46,4 +51,21 @@ * default: 1.0 | ||
} | ||
export interface GetCommentListParams { | ||
export interface GetCommentListByUserInformationIdParams { | ||
/** | ||
* Application identifier of the user information to be received | ||
* format: uuid | ||
*/ | ||
parentId: string; | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
'x-api-version'?: string; | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
'api-version'?: string; | ||
} | ||
export interface GetCommentListByParentIdParams { | ||
/** | ||
* Parent identifier of the comment list to be received | ||
@@ -227,3 +249,3 @@ * format: uuid | ||
/** | ||
* The method provider possibility to get a comment by parent id | ||
* The method provider possibility to get a comment by parent id and id | ||
* http://undefined/swagger/swagger-ui.html#!/Comment/GetComment | ||
@@ -238,6 +260,11 @@ */ | ||
/** | ||
* The method provider possibility to receive a comment list by user information id | ||
* http://undefined/swagger/swagger-ui.html#!/Comment/GetCommentListByUserInformationId | ||
*/ | ||
getCommentListByUserInformationId(params: GetCommentListByUserInformationIdParams): Observable<__model.CommentViewModelPageViewResponse>; | ||
/** | ||
* The method provider possibility to get a comment list by parent id | ||
* http://undefined/swagger/swagger-ui.html#!/Comment/GetCommentList | ||
* http://undefined/swagger/swagger-ui.html#!/Comment/GetCommentListByParentId | ||
*/ | ||
getCommentList(params: GetCommentListParams): Observable<__model.CommentPageViewModelResponseItemResponse>; | ||
getCommentListByParentId(params: GetCommentListByParentIdParams): Observable<__model.CommentPageViewModelResponseItemResponse>; | ||
/** | ||
@@ -244,0 +271,0 @@ * The method provider possibility to get a rating info by parent id |
@@ -13,2 +13,3 @@ /** | ||
export * from './defs/CommentViewModelItemResponse'; | ||
export * from './defs/CommentViewModelPageViewResponse'; | ||
export * from './defs/DateTimeFieldRequest'; | ||
@@ -15,0 +16,0 @@ export * from './defs/PostCommentCommand'; |
{ | ||
"name": "@solidexpert/comment-api", | ||
"version": "1.0.51", | ||
"version": "1.0.53", | ||
"peerDependencies": { | ||
@@ -5,0 +5,0 @@ "@angular/common": "*", |
@@ -13,2 +13,3 @@ export * from './lib/model'; | ||
export * from './lib/defs/CommentViewModelItemResponse'; | ||
export * from './lib/defs/CommentViewModelPageViewResponse'; | ||
export * from './lib/defs/DateTimeFieldRequest'; | ||
@@ -26,3 +27,4 @@ export * from './lib/defs/PostCommentCommand'; | ||
export * from './lib/store/comment/getComment/getComment.service'; | ||
export * from './lib/store/comment/getCommentList/getCommentList.service'; | ||
export * from './lib/store/comment/getCommentListByParentId/getCommentListByParentId.service'; | ||
export * from './lib/store/comment/getCommentListByUserInformationId/getCommentListByUserInformationId.service'; | ||
export * from './lib/store/comment/getRatingInfo/getRatingInfo.service'; | ||
@@ -29,0 +31,0 @@ export * from './lib/store/comment/likeComment/likeComment.service'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
387706
78
3481