@yolo-croket-dev/amqp-access 0.2.60 → 0.2.61-jun.0
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 +2 -2
- package/store-item-server/dto/store-item/command/reg-store-item.dto.d.ts +3 -3
- package/user-service/dto/seller-portal-channel-link-request-log/command/create-seller-portal-channel-link-request-log.dto.d.ts +3 -0
- package/user-service/dto/seller-portal-channel-link-request-log/command/create-seller-portal-channel-link-request-log.dto.js +11 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-croket-dev/amqp-access",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.61-jun.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@yolo-croket-dev/core": "^1.7.8",
|
|
23
23
|
"@yolo-croket-dev/dto-v2": "^0.0.162",
|
|
24
24
|
"@yolo-croket-dev/entity": "^0.1.141",
|
|
25
|
-
"@yolo-croket-dev/entity-v2": "0.0.124",
|
|
25
|
+
"@yolo-croket-dev/entity-v2": "0.0.124-jun.0",
|
|
26
26
|
"@yolo-croket-dev/domain": "^0.0.12",
|
|
27
27
|
"class-transformer": "^0.5.1",
|
|
28
28
|
"class-validator": "^0.13.2",
|
|
@@ -4,7 +4,7 @@ export declare class RegStoreItemImgSizeInfo {
|
|
|
4
4
|
height: number;
|
|
5
5
|
}
|
|
6
6
|
export declare class RegStoreItemContentsData {
|
|
7
|
-
contentsType: StoreItemContentsTypeEnum;
|
|
7
|
+
contentsType: StoreItemContentsTypeEnum | string;
|
|
8
8
|
title: string;
|
|
9
9
|
explanation: string;
|
|
10
10
|
videoUrl?: string;
|
|
@@ -21,7 +21,7 @@ export declare class RegStoreItemOptionList {
|
|
|
21
21
|
isDelete: boolean;
|
|
22
22
|
}
|
|
23
23
|
export declare class RegStoreItemOptionInfo {
|
|
24
|
-
optionType: StoreItemOptionTypeEnum;
|
|
24
|
+
optionType: StoreItemOptionTypeEnum | string;
|
|
25
25
|
optionList: RegStoreItemOptionList[];
|
|
26
26
|
optionGroupFrameList?: RegStoreItemOptionGroupFrameList[];
|
|
27
27
|
}
|
|
@@ -36,7 +36,7 @@ export declare class RegStoreItemPayload {
|
|
|
36
36
|
sellingInfoLogId: string;
|
|
37
37
|
purchasedDate?: string;
|
|
38
38
|
contents?: string;
|
|
39
|
-
precautionCodeList?: PrecautionCodeEnum[];
|
|
39
|
+
precautionCodeList?: PrecautionCodeEnum[] | string[];
|
|
40
40
|
precautionEtc?: string;
|
|
41
41
|
contentsDataList?: RegStoreItemContentsData[];
|
|
42
42
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { SellerPortalChannelLinkRequestLogTypeEnum } from '@yolo-croket-dev/entity-v2/seller-portal-channel-link-request-log';
|
|
2
|
+
import { SellerPortalChannelLinkActualPeriodTypeEnum } from '@yolo-croket-dev/entity-v2/seller-portal-channel-link-actual-period';
|
|
2
3
|
export declare class CreateSellerPortalChannelLinkRequestLogPayload {
|
|
3
4
|
sellerPortalChannelLinkId: string;
|
|
4
5
|
logType: SellerPortalChannelLinkRequestLogTypeEnum;
|
|
5
6
|
sellerId: string;
|
|
7
|
+
sellerPortalChannelLinkActualPeriodId?: string;
|
|
8
|
+
sellerPortalChannelLinkActualPeriodType?: string | SellerPortalChannelLinkActualPeriodTypeEnum;
|
|
6
9
|
}
|
|
@@ -13,6 +13,7 @@ exports.CreateSellerPortalChannelLinkRequestLogPayload = void 0;
|
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
// @entity
|
|
15
15
|
const seller_portal_channel_link_request_log_1 = require("@yolo-croket-dev/entity-v2/seller-portal-channel-link-request-log");
|
|
16
|
+
const seller_portal_channel_link_actual_period_1 = require("@yolo-croket-dev/entity-v2/seller-portal-channel-link-actual-period");
|
|
16
17
|
class CreateSellerPortalChannelLinkRequestLogPayload {
|
|
17
18
|
}
|
|
18
19
|
exports.CreateSellerPortalChannelLinkRequestLogPayload = CreateSellerPortalChannelLinkRequestLogPayload;
|
|
@@ -28,3 +29,13 @@ __decorate([
|
|
|
28
29
|
(0, class_validator_1.IsMongoId)(),
|
|
29
30
|
__metadata("design:type", String)
|
|
30
31
|
], CreateSellerPortalChannelLinkRequestLogPayload.prototype, "sellerId", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, class_validator_1.IsMongoId)(),
|
|
34
|
+
(0, class_validator_1.IsOptional)(),
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], CreateSellerPortalChannelLinkRequestLogPayload.prototype, "sellerPortalChannelLinkActualPeriodId", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_validator_1.IsEnum)(seller_portal_channel_link_actual_period_1.SellerPortalChannelLinkActualPeriodTypeEnum),
|
|
39
|
+
(0, class_validator_1.IsOptional)(),
|
|
40
|
+
__metadata("design:type", String)
|
|
41
|
+
], CreateSellerPortalChannelLinkRequestLogPayload.prototype, "sellerPortalChannelLinkActualPeriodType", void 0);
|