@yolo-croket-dev/amqp-access 0.4.88 → 0.4.89

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.4.88",
3
+ "version": "0.4.89",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -7,3 +7,4 @@ export * from './update-brand-name-bulk.dto';
7
7
  export * from './update-brand-eng-name-bulk.dto';
8
8
  export * from './delete-brand-info-bulk.dto';
9
9
  export * from './dalpha-update-brand-name-bulk.dto';
10
+ export * from './sync-seduce-add-cart-item-ids.dto';
@@ -23,3 +23,4 @@ __exportStar(require("./update-brand-name-bulk.dto"), exports);
23
23
  __exportStar(require("./update-brand-eng-name-bulk.dto"), exports);
24
24
  __exportStar(require("./delete-brand-info-bulk.dto"), exports);
25
25
  __exportStar(require("./dalpha-update-brand-name-bulk.dto"), exports);
26
+ __exportStar(require("./sync-seduce-add-cart-item-ids.dto"), exports);
@@ -0,0 +1,3 @@
1
+ export declare class SyncSeduceAddCartItemIdsResult {
2
+ itemNums: number;
3
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SyncSeduceAddCartItemIdsResult = void 0;
4
+ class SyncSeduceAddCartItemIdsResult {
5
+ }
6
+ exports.SyncSeduceAddCartItemIdsResult = SyncSeduceAddCartItemIdsResult;
@@ -43,4 +43,5 @@ export declare class AmqpStoreItemService {
43
43
  updateBrandEngNameBulk(payload: UpdateBrandEngNameBulkPayload, param: AbstractParam): Promise<void>;
44
44
  deleteBrandInfoBulk(payload: DeleteBrandInfoBulkPayload, param: AbstractParam): Promise<void>;
45
45
  dalphaUpdateBrandNameBulk(payload: DalphaUpdateBrandNameBulkPayload, param: AbstractParam): Promise<void>;
46
+ syncSeduceAddCartItemIds(param: AbstractParam): Promise<void>;
46
47
  }
@@ -129,6 +129,9 @@ let AmqpStoreItemService = class AmqpStoreItemService {
129
129
  async dalphaUpdateBrandNameBulk(payload, param) {
130
130
  return this.amqpManager.call('브랜드 이름 대량 업데이트 -달파 api-', 'store-item.update.dalpha-brand-name-bulk', payload, param, { isErrorThrowing: true });
131
131
  }
132
+ async syncSeduceAddCartItemIds(param) {
133
+ return this.amqpManager.call('장바구니 추가 추천 상품 아이디 동기화', 'store-item.sync.seduce-add-cart-item-ids', undefined, param, { isErrorThrowing: true });
134
+ }
132
135
  };
133
136
  exports.AmqpStoreItemService = AmqpStoreItemService;
134
137
  exports.AmqpStoreItemService = AmqpStoreItemService = __decorate([