@yolo-croket-dev/amqp-access 0.0.90-jun.6 → 0.0.90-jun.8

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.90-jun.6",
3
+ "version": "0.0.90-jun.8",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -11,12 +11,8 @@ declare type CartForWritePay = Pick<CartEntity, 'itemId' | 'storeId' | 'pOption'
11
11
  export declare class GetCartsForWritePayPayload {
12
12
  /** 장바구니 아이디 리스트 */
13
13
  cartIds: string[];
14
- /** 검색 포함 필드 */
15
- includeFields?: string[];
16
- /** 검색 제외 필드 */
17
- excludeFields?: string[];
18
14
  }
19
- export declare class GetCartsByIdsResult {
15
+ export declare class GetCartsForWritePayResult {
20
16
  carts: CartForWritePay[];
21
17
  }
22
18
  export {};
@@ -1,9 +1,9 @@
1
1
  import { ClientProxy } from '@nestjs/microservices';
2
2
  import { AbstractParam } from '@yolo-croket-dev/core';
3
- import { GetCartsForWritePayPayload, GetCartsByIdsResult } from '@yolo-croket-dev/amqp-access/user-service/dto/cart';
3
+ import { GetCartsForWritePayPayload, GetCartsForWritePayResult } from '@yolo-croket-dev/amqp-access/user-service/dto/cart';
4
4
  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<GetCartsByIdsResult>;
8
+ getCartsByIds(payload: GetCartsForWritePayPayload, param: AbstractParam): Promise<GetCartsForWritePayResult>;
9
9
  }