@yolo-croket-dev/amqp-access 0.0.202-jun.13 → 0.0.202-jun.15

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.
@@ -1,4 +1,4 @@
1
- import { SearchedItemInfoForSaleInfo, SearchedSellerInfoForSaleInfo } from './get-item-sale-infos-for-sales-team-by-atlas.dto';
1
+ import { SearchedItemInfoForSaleInfo, SearchedSellerInfoForSaleInfo, SearchedStoreForSaleInfo } from './get-item-sale-infos-for-sales-team-by-atlas.dto';
2
2
  export declare class GetItemSaleMergeDataForSalesTeamByAtlasPayload {
3
3
  itemIds: string[];
4
4
  selectPInfoProcessList: string[];
@@ -10,18 +10,19 @@ export declare class GetItemSaleMergeDataForSalesTeamByAtlasResult {
10
10
  }
11
11
  export declare class CustomItemInfoForItemSale {
12
12
  _id: string;
13
- allBasePrice: number;
14
- allCouponPrice: number;
15
- allOptionNums: number;
13
+ clickNumsBefore1day: number;
16
14
  allPNums: number;
17
15
  allPaidPrice: number;
16
+ allBasePrice: number;
18
17
  allTotalPrice: number;
18
+ allCouponPrice: number;
19
19
  allUsedCredit: number;
20
- clickNumsBefore1day: number;
20
+ allOptionNums: number;
21
21
  }
22
22
  export declare class ItemSaleInfoForSaleTeam {
23
23
  itemId: string;
24
24
  customItemInfo: CustomItemInfoForItemSale;
25
25
  searchedItemInfo: SearchedItemInfoForSaleInfo;
26
26
  searchedSellerInfo: SearchedSellerInfoForSaleInfo;
27
+ searchedStoreForSaleInfo: SearchedStoreForSaleInfo;
27
28
  }
@@ -1,6 +1,6 @@
1
1
  import { ClientProxy } from '@nestjs/microservices';
2
2
  import { AbstractParam } from '@yolo-croket-dev/core';
3
- import { GetPInfoSettleAmountInfoByAtlasPayload, GetPInfoSettleAmountInfoByAtlasResult, GetPInfoAllSettleAmountByAtlasPayload, GetPInfoAllSettleAmountByAtlasResult, GetPInfoLegacySettleLogsByAtlasPayload, GetPInfoLegacySettleLogsByAtlasResult, GetPInfoAccumulatedSettleAmountByAtlasPayload, GetPInfoAccumulatedSettleAmountByAtlasResult, GetPInfoDoneSettleAmountByAtlasPayload, GetPInfoDoneSettleAmountByAtlasResult, GetPInfoExpectSettleAmountByAtlasPayload, GetPInfoExpectSettleAmountByAtlasResult, GetPartialRefundProcessesByPublicIdsPayload, GetPartialRefundProcessesByPublicIdsResult, GetPInfosForManageBuyerByAtlasPayload, GetPInfosForManageBuyerByAtlasResult, GetFacetPInfosForManageBuyerByAtlasPayload, GetFacetPInfosForManageBuyerByAtlasResult, ReloadPInfosForManageBuyerPayload, ReloadPInfosForManageBuyerResult, UpdateAdCenterCouponInfoPayload, UpdateDoneAdCenterCouponInfosPayload, CancelDoneAdCenterCouponInfosPayload, RequestCreateAdCenterCouponSettlePayload, PatchProcessV2ToCheckingStockPayload, PatchProcessV2ToCheckingStockResult } from '../dto/purchasedinfos';
3
+ import { GetPInfoSettleAmountInfoByAtlasPayload, GetPInfoSettleAmountInfoByAtlasResult, GetPInfoAllSettleAmountByAtlasPayload, GetPInfoAllSettleAmountByAtlasResult, GetPInfoLegacySettleLogsByAtlasPayload, GetPInfoLegacySettleLogsByAtlasResult, GetPInfoAccumulatedSettleAmountByAtlasPayload, GetPInfoAccumulatedSettleAmountByAtlasResult, GetPInfoDoneSettleAmountByAtlasPayload, GetPInfoDoneSettleAmountByAtlasResult, GetPInfoExpectSettleAmountByAtlasPayload, GetPInfoExpectSettleAmountByAtlasResult, GetPartialRefundProcessesByPublicIdsPayload, GetPartialRefundProcessesByPublicIdsResult, GetPInfosForManageBuyerByAtlasPayload, GetPInfosForManageBuyerByAtlasResult, GetFacetPInfosForManageBuyerByAtlasPayload, GetFacetPInfosForManageBuyerByAtlasResult, ReloadPInfosForManageBuyerPayload, ReloadPInfosForManageBuyerResult, UpdateAdCenterCouponInfoPayload, UpdateDoneAdCenterCouponInfosPayload, CancelDoneAdCenterCouponInfosPayload, RequestCreateAdCenterCouponSettlePayload, PatchProcessV2ToCheckingStockPayload, PatchProcessV2ToCheckingStockResult, GetItemSaleInfosForSalesTeamByAtlasPayload, GetItemSaleInfosForSalesTeamByAtlasResult, GetItemSaleMergeDataForSalesTeamByAtlasPayload, GetItemSaleMergeDataForSalesTeamByAtlasResult } from '../dto/purchasedinfos';
4
4
  export declare class AmqpPurchasedInfoService {
5
5
  private readonly client;
6
6
  private readonly amqpManager;
@@ -20,4 +20,6 @@ export declare class AmqpPurchasedInfoService {
20
20
  cancelDoneAdCenterCouponInfos(payload: CancelDoneAdCenterCouponInfosPayload, param: AbstractParam): Promise<void>;
21
21
  requestCreateAdCenterCouponSettle(payload: RequestCreateAdCenterCouponSettlePayload, param: AbstractParam): Promise<void>;
22
22
  patchProcessV2ToCheckingStock(payload: PatchProcessV2ToCheckingStockPayload, param: AbstractParam): Promise<PatchProcessV2ToCheckingStockResult>;
23
+ getItemSaleInfosForSalesTeamByAtlas(payload: GetItemSaleInfosForSalesTeamByAtlasPayload, param: AbstractParam): Promise<GetItemSaleInfosForSalesTeamByAtlasResult>;
24
+ getItemSaleMergeDataForSalesTeamByAtlas(payload: GetItemSaleMergeDataForSalesTeamByAtlasPayload, param: AbstractParam): Promise<GetItemSaleMergeDataForSalesTeamByAtlasResult>;
23
25
  }
@@ -66,6 +66,12 @@ let AmqpPurchasedInfoService = class AmqpPurchasedInfoService {
66
66
  async patchProcessV2ToCheckingStock(payload, param) {
67
67
  return this.amqpManager.call('셀러의 결제건들 재고확인중으로 변경', 'purchased-info.patch.process-v2-to-checking-stock', payload, param, { isErrorThrowing: true });
68
68
  }
69
+ async getItemSaleInfosForSalesTeamByAtlas(payload, param) {
70
+ return this.amqpManager.call('상품 판매 정보 결제 리스트 조회', 'purchased-info.get.item-sale-infos-for-sales-team-by-atlas', payload, param, { isErrorThrowing: true });
71
+ }
72
+ async getItemSaleMergeDataForSalesTeamByAtlas(payload, param) {
73
+ return this.amqpManager.call('상품 판매 정보 결제 종합 데이터 조회', 'purchased-info.get.item-sale-merge-data-for-sales-team-by-atlas', payload, param, { isErrorThrowing: true });
74
+ }
69
75
  };
70
76
  exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService;
71
77
  exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService = __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.0.202-jun.13",
3
+ "version": "0.0.202-jun.15",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",