@yolo-croket-dev/amqp-access 0.5.74 → 0.5.75
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 { GetChangedOptionPublicIdsByIdsPayload, GetPInfoForExpectSettleByAtlasPayload, GetPInfoForExpectSettleByAtlasResult, SearchSellerTransactionHistoryByProcessPayload, SearchSellerTransactionHistoryByProcessResult } from './dto';
|
|
5
|
+
import { GetChangedOptionPublicIdsByIdsPayload, GetChangedOptionPublicIdsByIdsResult, GetPInfoForExpectSettleByAtlasPayload, GetPInfoForExpectSettleByAtlasResult, SearchSellerTransactionHistoryByProcessPayload, SearchSellerTransactionHistoryByProcessResult } from './dto';
|
|
6
6
|
export declare class AmqpOrderServer {
|
|
7
7
|
private readonly client;
|
|
8
8
|
private readonly amqpManager;
|
|
@@ -14,5 +14,5 @@ export declare class AmqpOrderServer {
|
|
|
14
14
|
/** 결제 내역 추출 */
|
|
15
15
|
getPurchasedInfoForAdminExcel(payload: GetPurchasedInfoForAdminExcelPayload, param: AbstractParam): Promise<GetPurchasedInfoForAdminExcelResult>;
|
|
16
16
|
getPInfoForExpectSettleByAtlas(payload: GetPInfoForExpectSettleByAtlasPayload, param: AbstractParam): Promise<GetPInfoForExpectSettleByAtlasResult[]>;
|
|
17
|
-
getChangedOptionPublicIdsByIds(payload: GetChangedOptionPublicIdsByIdsPayload, param: AbstractParam): Promise<
|
|
17
|
+
getChangedOptionPublicIdsByIds(payload: GetChangedOptionPublicIdsByIdsPayload, param: AbstractParam): Promise<GetChangedOptionPublicIdsByIdsResult[]>;
|
|
18
18
|
}
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.GetChangedOptionPublicIdsByIdsPayload = void 0;
|
|
12
|
+
exports.GetChangedOptionPublicIdsByIdsResult = exports.GetChangedOptionPublicIdsByIdsPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
class GetChangedOptionPublicIdsByIdsPayload {
|
|
15
15
|
}
|
|
@@ -19,3 +19,6 @@ __decorate([
|
|
|
19
19
|
__metadata("design:type", Array)
|
|
20
20
|
], GetChangedOptionPublicIdsByIdsPayload.prototype, "PInfoIds", void 0);
|
|
21
21
|
exports.GetChangedOptionPublicIdsByIdsPayload = GetChangedOptionPublicIdsByIdsPayload;
|
|
22
|
+
class GetChangedOptionPublicIdsByIdsResult {
|
|
23
|
+
}
|
|
24
|
+
exports.GetChangedOptionPublicIdsByIdsResult = GetChangedOptionPublicIdsByIdsResult;
|