@yolo-croket-dev/amqp-access 0.5.168 → 0.5.170
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.
package/package.json
CHANGED
|
@@ -8,10 +8,10 @@ export declare class GetLegacyItemReviewsPayload {
|
|
|
8
8
|
isPhotoReview?: boolean;
|
|
9
9
|
}
|
|
10
10
|
/** 응답 Result */
|
|
11
|
-
export declare class
|
|
11
|
+
export declare class GetLegacyItemReviewsResult {
|
|
12
12
|
maxPage: number;
|
|
13
13
|
itemReviewAllNums: number;
|
|
14
|
-
itemReviewList:
|
|
14
|
+
itemReviewList: LegacyItemReviewInfo[];
|
|
15
15
|
}
|
|
16
16
|
/** 셀러 답글 정보 인터페이스 */
|
|
17
17
|
export interface SellerAnswerInfo {
|
|
@@ -19,13 +19,13 @@ export interface SellerAnswerInfo {
|
|
|
19
19
|
sellerAnswerDate: Date;
|
|
20
20
|
}
|
|
21
21
|
/** 옵션 정보 인터페이스 */
|
|
22
|
-
export interface
|
|
22
|
+
export interface LegacyItemReviewInfoPOptionInfo {
|
|
23
23
|
optionName: string;
|
|
24
24
|
}
|
|
25
25
|
/** 상품 리뷰 정보 인터페이스 */
|
|
26
|
-
export interface
|
|
26
|
+
export interface LegacyItemReviewInfo {
|
|
27
27
|
itemName: string;
|
|
28
|
-
pOptionList:
|
|
28
|
+
pOptionList: LegacyItemReviewInfoPOptionInfo[];
|
|
29
29
|
deliveryPreparationPeriod: number;
|
|
30
30
|
categoryItemReviewTextList: string[];
|
|
31
31
|
reviewText: string;
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
12
|
+
exports.GetLegacyItemReviewsResult = exports.GetLegacyItemReviewsPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
/** 요청 Payload */
|
|
15
15
|
class GetLegacyItemReviewsPayload {
|
|
@@ -44,6 +44,6 @@ __decorate([
|
|
|
44
44
|
__metadata("design:type", Boolean)
|
|
45
45
|
], GetLegacyItemReviewsPayload.prototype, "isPhotoReview", void 0);
|
|
46
46
|
/** 응답 Result */
|
|
47
|
-
class
|
|
47
|
+
class GetLegacyItemReviewsResult {
|
|
48
48
|
}
|
|
49
|
-
exports.
|
|
49
|
+
exports.GetLegacyItemReviewsResult = GetLegacyItemReviewsResult;
|