@yolo-croket-dev/amqp-access 0.5.127 → 0.5.129

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.127",
3
+ "version": "0.5.129",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,6 +1,6 @@
1
1
  import { ClientProxy } from '@nestjs/microservices';
2
2
  import { AbstractParam } from '@yolo-croket-dev/core';
3
- import { AddSellerToBrandInspectionPayload, ApproveBrandInspectionPayload, CreateBrandInspectionPayload, RejectBrandInspectionPayload, GetBrandInspectionsForAdminResult } from '../../dto';
3
+ import { AddSellerToBrandInspectionPayload, ApproveBrandInspectionPayload, CreateBrandInspectionPayload, RejectBrandInspectionPayload, GetBrandInspectionsForAdminResult, GetBrandInspectionsForAdminPayload } from '../../dto';
4
4
  export declare class AmqpBrandInspectionService {
5
5
  private readonly client;
6
6
  private readonly amqpManager;
@@ -9,5 +9,5 @@ export declare class AmqpBrandInspectionService {
9
9
  addSellerToBrandInspection(payload: AddSellerToBrandInspectionPayload, param: AbstractParam): Promise<void>;
10
10
  approveBrandInspection(payload: ApproveBrandInspectionPayload, param: AbstractParam): Promise<void>;
11
11
  rejectBrandInspection(payload: RejectBrandInspectionPayload, param: AbstractParam): Promise<void>;
12
- getBrandInspectionsForAdmin(payload: void, param: AbstractParam): Promise<GetBrandInspectionsForAdminResult>;
12
+ getBrandInspectionsForAdmin(payload: GetBrandInspectionsForAdminPayload, param: AbstractParam): Promise<GetBrandInspectionsForAdminResult>;
13
13
  }
@@ -34,7 +34,7 @@ let AmqpBrandInspectionService = class AmqpBrandInspectionService {
34
34
  return this.amqpManager.call('브랜드 검토 거절', 'brand-inspection.reject', payload, param, { isErrorThrowing: true });
35
35
  }
36
36
  async getBrandInspectionsForAdmin(payload, param) {
37
- return this.amqpManager.call('브랜드 검토 관리자 조회', 'brand-inspection.get.for-admin', payload, param, { isErrorThrowing: true });
37
+ return this.amqpManager.call('브랜드 검토 관리자 조회', 'brand-inspection.get.list-for-admin', payload, param, { isErrorThrowing: true });
38
38
  }
39
39
  };
40
40
  exports.AmqpBrandInspectionService = AmqpBrandInspectionService;