nextemos 5.10.3 → 5.10.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IResponse } from "./response";
|
|
1
|
+
import { IResponse, IResponsePaging } from "./response";
|
|
2
2
|
export interface ICommentRatingOptionsResponse extends IResponse {
|
|
3
3
|
data: ICommentRatingOption[];
|
|
4
4
|
}
|
|
@@ -21,7 +21,7 @@ export interface ICommentSummary {
|
|
|
21
21
|
averageRate: number;
|
|
22
22
|
commentRatingOptionId: number;
|
|
23
23
|
}
|
|
24
|
-
export interface ICommentListResponse extends
|
|
24
|
+
export interface ICommentListResponse extends IResponsePaging {
|
|
25
25
|
data: IComment[];
|
|
26
26
|
}
|
|
27
27
|
export interface IComment {
|
package/dist/interfaces/index.js
CHANGED
|
@@ -54,3 +54,4 @@ __exportStar(require("../services/payment/payment.types"), exports);
|
|
|
54
54
|
__exportStar(require("../services/campaign/campaign.types"), exports);
|
|
55
55
|
__exportStar(require("../services/core/core.types"), exports);
|
|
56
56
|
__exportStar(require("../services/coupon/coupon.types"), exports);
|
|
57
|
+
__exportStar(require("../services/comment/comment.types"), exports);
|
package/dist/services/index.d.ts
CHANGED