@yolo-croket-dev/amqp-access 0.6.48-beta.5 → 0.6.48-beta.6
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
|
@@ -29,10 +29,18 @@ export declare class StoreItemGroupAdminDetailItem {
|
|
|
29
29
|
* @author jun
|
|
30
30
|
* @description 상품 그룹 상세 정보 (관리자용)
|
|
31
31
|
*/
|
|
32
|
-
export
|
|
32
|
+
export interface StoreItemGroupAdminDetail {
|
|
33
33
|
itemGroupId: string;
|
|
34
|
+
itemGroupName: string;
|
|
34
35
|
memo?: string;
|
|
36
|
+
itemIds: string[];
|
|
35
37
|
items: StoreItemGroupAdminDetailItem[];
|
|
38
|
+
itemGroupBrand?: string;
|
|
39
|
+
itemGroupSkus?: string[];
|
|
40
|
+
matchKeywords?: string[];
|
|
41
|
+
lastModifyDate: Date;
|
|
42
|
+
regDate: Date;
|
|
43
|
+
itemIntegrationReviewId?: string;
|
|
36
44
|
}
|
|
37
45
|
/**
|
|
38
46
|
* @author jun
|
|
@@ -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.StoreItemGroupAdminDetailItem = exports.GetStoreItemGroupPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
/**
|
|
15
15
|
* @author jun
|
|
@@ -59,10 +59,3 @@ __decorate([
|
|
|
59
59
|
class StoreItemGroupAdminDetailItem {
|
|
60
60
|
}
|
|
61
61
|
exports.StoreItemGroupAdminDetailItem = StoreItemGroupAdminDetailItem;
|
|
62
|
-
/**
|
|
63
|
-
* @author jun
|
|
64
|
-
* @description 상품 그룹 상세 정보 (관리자용)
|
|
65
|
-
*/
|
|
66
|
-
class StoreItemGroupAdminDetail {
|
|
67
|
-
}
|
|
68
|
-
exports.StoreItemGroupAdminDetail = StoreItemGroupAdminDetail;
|