@yolo-croket-dev/amqp-access 0.5.46 → 0.5.47

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.
@@ -2,7 +2,7 @@ import { ClientProxy } from '@nestjs/microservices';
2
2
  import { AbstractParam } from '@yolo-croket-dev/core';
3
3
  import { GetPurchasedInfoByIdsPayload, GetPurchasedInfosForBulkNotiPayload, GetPurchasedInfosForBulkNotiResult, GetPurchasedInfoForAdminExcelPayload, GetPurchasedInfoForAdminExcelResult } from '@yolo-croket-dev/dto-v2/order-server';
4
4
  import { PurchasedInfoEntity } from '@yolo-croket-dev/entity/src/purchased-info';
5
- import { SearchSellerTransactionHistoryByProcessPayload, SearchSellerTransactionHistoryByProcessResult } from './dto';
5
+ import { GetPInfoForExpectSettleByAtlasPayload, GetPInfoForExpectSettleByAtlasResult, SearchSellerTransactionHistoryByProcessPayload, SearchSellerTransactionHistoryByProcessResult } from './dto';
6
6
  export declare class AmqpOrderServer {
7
7
  private readonly client;
8
8
  private readonly amqpManager;
@@ -13,4 +13,5 @@ export declare class AmqpOrderServer {
13
13
  searchSellerTransactionHistoryByProcess(payload: SearchSellerTransactionHistoryByProcessPayload, param: AbstractParam): Promise<SearchSellerTransactionHistoryByProcessResult[]>;
14
14
  /** 결제 내역 추출 */
15
15
  getPurchasedInfoForAdminExcel(payload: GetPurchasedInfoForAdminExcelPayload, param: AbstractParam): Promise<GetPurchasedInfoForAdminExcelResult>;
16
+ getPInfoForExpectSettleByAtlas(payload: GetPInfoForExpectSettleByAtlasPayload, param: AbstractParam): Promise<GetPInfoForExpectSettleByAtlasResult[]>;
16
17
  }
@@ -36,6 +36,9 @@ let AmqpOrderServer = class AmqpOrderServer {
36
36
  async getPurchasedInfoForAdminExcel(payload, param) {
37
37
  return this.amqpManager.call('결제 내역 엑셀 다운로드용 데이터 조회', 'purchased-info.search.for-admin-excel', payload, param, { isErrorThrowing: true });
38
38
  }
39
+ async getPInfoForExpectSettleByAtlas(payload, param) {
40
+ return this.amqpManager.call('결제 내역 엑셀 다운로드용 데이터 조회', 'purchased-info.get.list-for-expect-settle-by-atlas', payload, param, { isErrorThrowing: true });
41
+ }
39
42
  };
40
43
  exports.AmqpOrderServer = AmqpOrderServer;
41
44
  exports.AmqpOrderServer = AmqpOrderServer = __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.5.46",
3
+ "version": "0.5.47",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,3 +0,0 @@
1
- import { PushRedisDBPayload } from './push-redis-db.dto';
2
- export declare class PullRedisDBPayload extends PushRedisDBPayload {
3
- }
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PullRedisDBPayload = void 0;
4
- const push_redis_db_dto_1 = require("./push-redis-db.dto");
5
- class PullRedisDBPayload extends push_redis_db_dto_1.PushRedisDBPayload {
6
- }
7
- exports.PullRedisDBPayload = PullRedisDBPayload;
@@ -1,4 +0,0 @@
1
- export declare class PushRedisDBPayload {
2
- redisDBKey: string;
3
- value: string;
4
- }
@@ -1,26 +0,0 @@
1
- "use strict";
2
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
- return c > 3 && r && Object.defineProperty(target, key, r), r;
7
- };
8
- var __metadata = (this && this.__metadata) || function (k, v) {
9
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.PushRedisDBPayload = void 0;
13
- const class_validator_1 = require("class-validator");
14
- class PushRedisDBPayload {
15
- }
16
- exports.PushRedisDBPayload = PushRedisDBPayload;
17
- __decorate([
18
- (0, class_validator_1.IsString)(),
19
- (0, class_validator_1.MinLength)(1),
20
- __metadata("design:type", String)
21
- ], PushRedisDBPayload.prototype, "redisDBKey", void 0);
22
- __decorate([
23
- (0, class_validator_1.IsString)(),
24
- (0, class_validator_1.MinLength)(1),
25
- __metadata("design:type", String)
26
- ], PushRedisDBPayload.prototype, "value", void 0);