@yolo-croket-dev/amqp-access 0.0.99 → 0.0.101

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.0.99",
3
+ "version": "0.0.101",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -45,6 +45,7 @@ export declare const CartForWritePaySelect: {
45
45
  requirement: number;
46
46
  lastModifyDate: number;
47
47
  directAddress_custom: number;
48
+ _item: number;
48
49
  };
49
50
  export declare class GetCartsForWritePayPayload {
50
51
  /** 장바구니 아이디 리스트 */
@@ -38,6 +38,7 @@ exports.CartForWritePaySelect = {
38
38
  requirement: 1,
39
39
  lastModifyDate: 1,
40
40
  directAddress_custom: 1,
41
+ _item: 1,
41
42
  };
42
43
  class GetCartsForWritePayPayload {
43
44
  }
@@ -5,5 +5,5 @@ export declare class AmqpCartService {
5
5
  private readonly client;
6
6
  private readonly amqpManager;
7
7
  constructor(client: ClientProxy);
8
- getCartsByIds(payload: GetCartsForWritePayPayload, param: AbstractParam): Promise<GetCartsForWritePayResult>;
8
+ getCartsForWritePay(payload: GetCartsForWritePayPayload, param: AbstractParam): Promise<GetCartsForWritePayResult>;
9
9
  }
@@ -21,8 +21,8 @@ let AmqpCartService = class AmqpCartService {
21
21
  this.client = client;
22
22
  this.amqpManager = new functions_1.AmqpManagement(this.client);
23
23
  }
24
- async getCartsByIds(payload, param) {
25
- return this.amqpManager.call('장바구니 아이디로 데이터 조회', 'cart.get.carts-by-ids', payload, param, { isErrorThrowing: true });
24
+ async getCartsForWritePay(payload, param) {
25
+ return this.amqpManager.call('장바구니 아이디로 데이터 조회', 'cart.get.carts-for-write-pay', payload, param, { isErrorThrowing: true });
26
26
  }
27
27
  };
28
28
  AmqpCartService = __decorate([