Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@solidexpert/comment-api

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@solidexpert/comment-api - npm Package Compare versions

Comparing version 1.0.53 to 1.0.54

esm2020/lib/defs/PostCommentRequest.mjs

104

lib/controllers/Comment.d.ts

@@ -20,3 +20,3 @@ /**

*/
id?: string;
id: string;
/**

@@ -33,3 +33,3 @@ * The requested API version

}
export interface PostCommentParams {
export interface PutCommentParams {
/**

@@ -41,2 +41,7 @@ * Parent identifier of the comment list to be received

/**
* Identifier of the comment to be received
* format: uuid
*/
id: string;
/**
* The requested API version

@@ -51,7 +56,7 @@ * default: 1.0

'api-version'?: string;
model: __model.PostCommentCommand;
model: __model.PutCommentRequest;
}
export interface GetCommentListByUserInformationIdParams {
export interface DeleteCommentParams {
/**
* Application identifier of the user information to be received
* Parent identifier of the comment list to be received
* format: uuid

@@ -61,6 +66,6 @@ */

/**
* The requested API version
* default: 1.0
* Identifier of the comment to be received
* format: uuid
*/
'x-api-version'?: string;
id: string;
/**

@@ -70,7 +75,7 @@ * The requested API version

*/
'api-version'?: string;
'x-api-version'?: string;
}
export interface GetCommentListByParentIdParams {
export interface GetCommentListByUserInformationIdParams {
/**
* Parent identifier of the comment list to be received
* Application identifier of the user information to be received
* format: uuid

@@ -89,3 +94,2 @@ */

'api-version'?: string;
model: __model.CommentQueryRequestFilterRequest;
}

@@ -109,3 +113,3 @@ export interface GetRatingInfoParams {

}
export interface SetCommentScoreParams {
export interface GetCommentListByParentIdParams {
/**

@@ -117,7 +121,2 @@ * Parent identifier of the comment list to be received

/**
* Identifier of the comment to be received
* format: uuid
*/
id: string;
/**
* The requested API version

@@ -132,5 +131,5 @@ * default: 1.0

'api-version'?: string;
model: __model.SetCommentScoreCommand;
model: __model.CommentQueryRequestFilterRequest;
}
export interface LikeCommentParams {
export interface PostCommentParams {
/**

@@ -142,7 +141,2 @@ * Parent identifier of the comment list to be received

/**
* Identifier of the comment to be received
* format: uuid
*/
id: string;
/**
* The requested API version

@@ -157,4 +151,5 @@ * default: 1.0

'api-version'?: string;
model: __model.PostCommentRequest;
}
export interface DislikeCommentParams {
export interface SetCommentScoreParams {
/**

@@ -180,4 +175,5 @@ * Parent identifier of the comment list to be received

'api-version'?: string;
model: __model.SetCommentScoreRequest;
}
export interface RemoveLikeParams {
export interface LikeCommentParams {
/**

@@ -198,4 +194,9 @@ * Parent identifier of the comment list to be received

'x-api-version'?: string;
/**
* The requested API version
* default: 1.0
*/
'api-version'?: string;
}
export interface RemoveDislikeParams {
export interface DislikeCommentParams {
/**

@@ -216,4 +217,9 @@ * Parent identifier of the comment list to be received

'x-api-version'?: string;
/**
* The requested API version
* default: 1.0
*/
'api-version'?: string;
}
export interface PutCommentParams {
export interface RemoveLikeParams {
/**

@@ -234,10 +240,4 @@ * Parent identifier of the comment list to be received

'x-api-version'?: string;
/**
* The requested API version
* default: 1.0
*/
'api-version'?: string;
model: __model.PutCommentCommand;
}
export interface DeleteCommentParams {
export interface RemoveDislikeParams {
/**

@@ -268,7 +268,12 @@ * Parent identifier of the comment list to be received

/**
* The method provider possibility to create a comment by parent id
* http://undefined/swagger/swagger-ui.html#!/Comment/PostComment
* The method provider possibility to update a comment by parent id and id
* http://undefined/swagger/swagger-ui.html#!/Comment/PutComment
*/
postComment(params: PostCommentParams): Observable<__model.CommentViewModelItemResponse>;
putComment(params: PutCommentParams): Observable<__model.CommentViewModelItemResponse>;
/**
* The method provider possibility to delete a comment by parent id and id
* http://undefined/swagger/swagger-ui.html#!/Comment/DeleteComment
*/
deleteComment(params: DeleteCommentParams): Observable<__model.StringItemResponse>;
/**
* The method provider possibility to receive a comment list by user information id

@@ -279,2 +284,7 @@ * http://undefined/swagger/swagger-ui.html#!/Comment/GetCommentListByUserInformationId

/**
* The method provider possibility to get a rating info by parent id
* http://undefined/swagger/swagger-ui.html#!/Comment/GetRatingInfo
*/
getRatingInfo(params: GetRatingInfoParams): Observable<__model.RatingInfoViewModelItemResponse>;
/**
* The method provider possibility to get a comment list by parent id

@@ -285,6 +295,6 @@ * http://undefined/swagger/swagger-ui.html#!/Comment/GetCommentListByParentId

/**
* The method provider possibility to get a rating info by parent id
* http://undefined/swagger/swagger-ui.html#!/Comment/GetRatingInfo
* The method provider possibility to create a comment by parent id
* http://undefined/swagger/swagger-ui.html#!/Comment/PostComment
*/
getRatingInfo(params: GetRatingInfoParams): Observable<__model.RatingInfoViewModelItemResponse>;
postComment(params: PostCommentParams): Observable<__model.CommentViewModelItemResponse>;
/**

@@ -315,14 +325,4 @@ * The method provider possibility to set a score to comment by parent id and id

removeDislike(params: RemoveDislikeParams): Observable<__model.CommentViewModelItemResponse>;
/**
* The method provider possibility to update a comment by parent id and id
* http://undefined/swagger/swagger-ui.html#!/Comment/PutComment
*/
putComment(params: PutCommentParams): Observable<__model.CommentViewModelItemResponse>;
/**
* The method provider possibility to delete a comment by parent id and id
* http://undefined/swagger/swagger-ui.html#!/Comment/DeleteComment
*/
deleteComment(params: DeleteCommentParams): Observable<__model.StringItemResponse>;
static ɵfac: i0.ɵɵFactoryDeclaration<CommentService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<CommentService>;
}

@@ -27,3 +27,5 @@ /**

answeredUserInformation?: __model.UserInformationViewModelSummary;
/** format: uuid */
commentListId?: string;
properties?: __model.CommentPropertyViewModel[];
}

@@ -15,9 +15,9 @@ /**

export * from './defs/DateTimeFieldRequest';
export * from './defs/PostCommentCommand';
export * from './defs/PutCommentCommand';
export * from './defs/PostCommentRequest';
export * from './defs/PutCommentRequest';
export * from './defs/RatingInfoViewModel';
export * from './defs/RatingInfoViewModelItemResponse';
export * from './defs/SetCommentScoreCommand';
export * from './defs/SetCommentScoreRequest';
export * from './defs/StringItemResponse';
export * from './defs/StringStringKeyValuePair';
export * from './defs/UserInformationViewModelSummary';
{
"name": "@solidexpert/comment-api",
"version": "1.0.53",
"version": "1.0.54",
"peerDependencies": {

@@ -5,0 +5,0 @@ "@angular/common": "*",

export * from './lib/model';
export * from './lib/controllers/Comment';
export * from './lib/common/formArrayExtended';
export * from './lib/common/formMap';
export * from './lib/common/utils';
export * from './lib/controllers/Comment';
export * from './lib/defs/CommentPageViewModelResponse';

@@ -15,7 +15,7 @@ export * from './lib/defs/CommentPageViewModelResponseItemResponse';

export * from './lib/defs/DateTimeFieldRequest';
export * from './lib/defs/PostCommentCommand';
export * from './lib/defs/PutCommentCommand';
export * from './lib/defs/PostCommentRequest';
export * from './lib/defs/PutCommentRequest';
export * from './lib/defs/RatingInfoViewModel';
export * from './lib/defs/RatingInfoViewModelItemResponse';
export * from './lib/defs/SetCommentScoreCommand';
export * from './lib/defs/SetCommentScoreRequest';
export * from './lib/defs/StringItemResponse';

@@ -22,0 +22,0 @@ export * from './lib/defs/StringStringKeyValuePair';

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc