@yolo-croket-dev/amqp-access 0.5.155-sj → 0.5.155
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-croket-dev/amqp-access",
|
|
3
|
-
"version": "0.5.155
|
|
3
|
+
"version": "0.5.155",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -27,4 +27,4 @@
|
|
|
27
27
|
"class-validator": "^0.13.2",
|
|
28
28
|
"dotenv": "^16.3.1"
|
|
29
29
|
}
|
|
30
|
-
}
|
|
30
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare class UpdateBrandInfosData {
|
|
2
2
|
itemId: string;
|
|
3
3
|
brandName: string;
|
|
4
|
-
engBrandName
|
|
4
|
+
engBrandName?: string;
|
|
5
5
|
subBrandName?: string;
|
|
6
6
|
}
|
|
7
7
|
export declare class UpdateBrandInfosPayload {
|
|
@@ -10,7 +10,7 @@ export declare class UpdateBrandInfosPayload {
|
|
|
10
10
|
export declare class UpdateBrandInfosErrorData {
|
|
11
11
|
itemId: string;
|
|
12
12
|
brandName: string;
|
|
13
|
-
engBrandName
|
|
13
|
+
engBrandName?: string;
|
|
14
14
|
subBrandName?: string;
|
|
15
15
|
}
|
|
16
16
|
export declare class UpdateBrandInfosResult {
|
|
@@ -25,6 +25,7 @@ __decorate([
|
|
|
25
25
|
], UpdateBrandInfosData.prototype, "brandName", void 0);
|
|
26
26
|
__decorate([
|
|
27
27
|
(0, class_validator_1.IsString)(),
|
|
28
|
+
(0, class_validator_1.IsOptional)(),
|
|
28
29
|
__metadata("design:type", String)
|
|
29
30
|
], UpdateBrandInfosData.prototype, "engBrandName", void 0);
|
|
30
31
|
__decorate([
|
|
@@ -175,7 +175,7 @@ let AmqpStoreItemService = class AmqpStoreItemService {
|
|
|
175
175
|
return this.amqpManager.call('프리블프 용 상품 조회', 'store-item.get.store-items-by-pre-black-friday-id', payload, param, { isErrorThrowing: true });
|
|
176
176
|
}
|
|
177
177
|
async updateBrandInfos(payload, param) {
|
|
178
|
-
return this.amqpManager.call('달파 데이터 기반 상품 정보에 브랜드 값 저장', 'store-item.update.
|
|
178
|
+
return this.amqpManager.call('달파 데이터 기반 상품 정보에 브랜드 값 저장', 'store-item.update.brand-infos', payload, param, { isErrorThrowing: true });
|
|
179
179
|
}
|
|
180
180
|
};
|
|
181
181
|
exports.AmqpStoreItemService = AmqpStoreItemService;
|