@yolo-croket-dev/amqp-access 0.6.36 → 0.6.37-hj-2
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/order-server/dto/purchasedinfos/query/get-p-infos-by-ids.dto.d.ts +12 -0
- package/order-server/dto/purchasedinfos/query/get-p-infos-by-ids.dto.js +34 -0
- package/order-server/dto/purchasedinfos/query/get-p-infos-for-luxury-appraisal.dto.d.ts +9 -0
- package/order-server/dto/purchasedinfos/query/get-p-infos-for-luxury-appraisal.dto.js +24 -0
- package/order-server/dto/purchasedinfos/query/index.d.ts +2 -0
- package/order-server/dto/purchasedinfos/query/index.js +2 -0
- package/order-server/services/amqp.purchased-info.service.d.ts +3 -1
- package/order-server/services/amqp.purchased-info.service.js +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PurchasedInfoEntity } from '@yolo-croket-dev/entity-v2';
|
|
2
|
+
export declare class GetPInfosByIdsPayload {
|
|
3
|
+
/** 결제 정보 아이디 */
|
|
4
|
+
pInfoIds: string[];
|
|
5
|
+
/** 검색 포함 필드 */
|
|
6
|
+
includeFields?: string[];
|
|
7
|
+
/** 검색 제외 필드 */
|
|
8
|
+
excludeFields?: string[];
|
|
9
|
+
}
|
|
10
|
+
export interface GetPInfosByIdsResult {
|
|
11
|
+
pInfos: Partial<PurchasedInfoEntity>[];
|
|
12
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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.GetPInfosByIdsPayload = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class GetPInfosByIdsPayload {
|
|
15
|
+
}
|
|
16
|
+
exports.GetPInfosByIdsPayload = GetPInfosByIdsPayload;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsArray)(),
|
|
19
|
+
(0, class_validator_1.IsMongoId)({ each: true })
|
|
20
|
+
/** 결제 정보 아이디 */
|
|
21
|
+
,
|
|
22
|
+
__metadata("design:type", Array)
|
|
23
|
+
], GetPInfosByIdsPayload.prototype, "pInfoIds", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsArray)(),
|
|
26
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
27
|
+
(0, class_validator_1.IsOptional)(),
|
|
28
|
+
__metadata("design:type", Array)
|
|
29
|
+
], GetPInfosByIdsPayload.prototype, "includeFields", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsArray)(),
|
|
32
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
33
|
+
__metadata("design:type", Array)
|
|
34
|
+
], GetPInfosByIdsPayload.prototype, "excludeFields", void 0);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PurchasedInfoEntity } from '@yolo-croket-dev/entity-v2';
|
|
2
|
+
export declare class GetPInfosForLuxuryAppraisalPayload {
|
|
3
|
+
buyerId: string;
|
|
4
|
+
paymentDate: string;
|
|
5
|
+
}
|
|
6
|
+
export type PInfoForLuxuryAppraisal = Pick<PurchasedInfoEntity, '_id' | 'publicId' | 'buyerId' | 'pastBuyerUsername' | 'itemId' | 'pastName' | 'storeId' | 'process' | 'process_v2' | 'paymentDate' | 'deliveryData'>;
|
|
7
|
+
export interface GetPInfosForLuxuryAppraisalResult {
|
|
8
|
+
pInfos: PInfoForLuxuryAppraisal[];
|
|
9
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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.GetPInfosForLuxuryAppraisalPayload = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class GetPInfosForLuxuryAppraisalPayload {
|
|
15
|
+
}
|
|
16
|
+
exports.GetPInfosForLuxuryAppraisalPayload = GetPInfosForLuxuryAppraisalPayload;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsMongoId)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], GetPInfosForLuxuryAppraisalPayload.prototype, "buyerId", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsDateString)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], GetPInfosForLuxuryAppraisalPayload.prototype, "paymentDate", void 0);
|
|
@@ -11,3 +11,5 @@ export * from './check-can-change-purchased-options-by-pay-try-log-id.dto';
|
|
|
11
11
|
export * from './get-purchased-info-items-for-extraction-by-type.dto';
|
|
12
12
|
export * from './get-expect-settle-amount.dto';
|
|
13
13
|
export * from './get-changed-option-public-ids-by-ids.dto';
|
|
14
|
+
export * from './get-p-infos-by-ids.dto';
|
|
15
|
+
export * from './get-p-infos-for-luxury-appraisal.dto';
|
|
@@ -27,3 +27,5 @@ __exportStar(require("./check-can-change-purchased-options-by-pay-try-log-id.dto
|
|
|
27
27
|
__exportStar(require("./get-purchased-info-items-for-extraction-by-type.dto"), exports);
|
|
28
28
|
__exportStar(require("./get-expect-settle-amount.dto"), exports);
|
|
29
29
|
__exportStar(require("./get-changed-option-public-ids-by-ids.dto"), exports);
|
|
30
|
+
__exportStar(require("./get-p-infos-by-ids.dto"), exports);
|
|
31
|
+
__exportStar(require("./get-p-infos-for-luxury-appraisal.dto"), exports);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ClientProxy } from '@nestjs/microservices';
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
|
-
import { GetPInfoSettleAmountInfoByAtlasPayload, GetPInfoSettleAmountInfoByAtlasResult, 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, GetPNumsForShowAdCenterInflowResult, GetPNumsGroupItemIdPayload, GetPNumsGroupItemIdResult, GetPInfoIdsForPredictSettlePayload, GetPInfoIdsForPredictSettleResult, GetPInfosForBeforeDeliveryExcelPayload, GetPInfosForBeforeDeliveryExcelResult, GetPurchasedInfosForUnconfirmedWaitingOrderSellersExcelResult, IsPurchaseStoreItemByUserBulkPayload, IsPurchaseStoreItemByUserBulkResponse, CheckCanChangePurchasedOptionPayload, CheckCanChangePurchasedOptionResult, ChangePurchasedOptionPayload, CheckCanChangePurchasedOptionsByPayTryLogIdPayload, CheckCanChangePurchasedOptionsByPayTryLogIdResult, GetPurchasedInfoItemsForExtractionByTypeResult, GetPInfoForExpectSettleByAtlasResult, GetExpectSettleAmountResult, GetPInfoForExpectSettleByAtlasPayload, GetChangedOptionPublicIdsByIdsPayload, GetChangedOptionPublicIdsByIdsResult } from '../dto/purchasedinfos';
|
|
3
|
+
import { GetPInfoSettleAmountInfoByAtlasPayload, GetPInfoSettleAmountInfoByAtlasResult, 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, GetPNumsForShowAdCenterInflowResult, GetPNumsGroupItemIdPayload, GetPNumsGroupItemIdResult, GetPInfoIdsForPredictSettlePayload, GetPInfoIdsForPredictSettleResult, GetPInfosForBeforeDeliveryExcelPayload, GetPInfosForBeforeDeliveryExcelResult, GetPurchasedInfosForUnconfirmedWaitingOrderSellersExcelResult, IsPurchaseStoreItemByUserBulkPayload, IsPurchaseStoreItemByUserBulkResponse, CheckCanChangePurchasedOptionPayload, CheckCanChangePurchasedOptionResult, ChangePurchasedOptionPayload, CheckCanChangePurchasedOptionsByPayTryLogIdPayload, CheckCanChangePurchasedOptionsByPayTryLogIdResult, GetPurchasedInfoItemsForExtractionByTypeResult, GetPInfoForExpectSettleByAtlasResult, GetExpectSettleAmountResult, GetPInfoForExpectSettleByAtlasPayload, GetChangedOptionPublicIdsByIdsPayload, GetChangedOptionPublicIdsByIdsResult, GetPInfosByIdsPayload, GetPInfosByIdsResult, GetPInfosForLuxuryAppraisalPayload, GetPInfosForLuxuryAppraisalResult } from '../dto/purchasedinfos';
|
|
4
4
|
export declare class AmqpPurchasedInfoService {
|
|
5
5
|
private readonly client;
|
|
6
6
|
private readonly amqpManager;
|
|
@@ -37,4 +37,6 @@ export declare class AmqpPurchasedInfoService {
|
|
|
37
37
|
getPInfoForExpectSettleByAtlas(payload: GetPInfoForExpectSettleByAtlasPayload, param: AbstractParam): Promise<GetPInfoForExpectSettleByAtlasResult[]>;
|
|
38
38
|
getExpectSettleAmount(param: AbstractParam): Promise<GetExpectSettleAmountResult>;
|
|
39
39
|
getChangedOptionPublicIdsByIds(payload: GetChangedOptionPublicIdsByIdsPayload, param: AbstractParam): Promise<GetChangedOptionPublicIdsByIdsResult[]>;
|
|
40
|
+
getPInfosByIds(payload: GetPInfosByIdsPayload, param: AbstractParam): Promise<GetPInfosByIdsResult>;
|
|
41
|
+
getPInfosForLuxuryAppraisal(payload: GetPInfosForLuxuryAppraisalPayload, param: AbstractParam): Promise<GetPInfosForLuxuryAppraisalResult>;
|
|
40
42
|
}
|
|
@@ -118,6 +118,12 @@ let AmqpPurchasedInfoService = class AmqpPurchasedInfoService {
|
|
|
118
118
|
async getChangedOptionPublicIdsByIds(payload, param) {
|
|
119
119
|
return this.amqpManager.call('결제 아이디 리스트로 변경된 옵션 publicId 리스트 조회', 'purchased-info.get.changed-option-public-ids-by-ids', payload, param, { isErrorThrowing: true });
|
|
120
120
|
}
|
|
121
|
+
async getPInfosByIds(payload, param) {
|
|
122
|
+
return this.amqpManager.call('결제 정보 아이디 리스트로 결제 정보 리스트 조회', 'purchased-info.get.p-infos-by-ids', payload, param, { isErrorThrowing: true });
|
|
123
|
+
}
|
|
124
|
+
async getPInfosForLuxuryAppraisal(payload, param) {
|
|
125
|
+
return this.amqpManager.call('명품 라올스 상품 여부 조회', 'purchased-info.get.p-infos-for-luxury-appraisal', payload, param, { isErrorThrowing: true });
|
|
126
|
+
}
|
|
121
127
|
};
|
|
122
128
|
exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService;
|
|
123
129
|
exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService = __decorate([
|