@yolo-croket-dev/amqp-access 0.7.113 → 0.7.115
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-public-ids-by-receive-info-changed-in-before-delivery.dto.d.ts +3 -0
- package/order-server/dto/purchasedinfos/query/get-public-ids-by-receive-info-changed-in-before-delivery.dto.js +2 -0
- package/order-server/dto/purchasedinfos/query/index.d.ts +1 -0
- package/order-server/dto/purchasedinfos/query/index.js +1 -0
- package/order-server/dto/purchasedinfos/query/search-seller-transaction-history-by-process.dto.d.ts +2 -0
- package/order-server/services/amqp.purchased-info.service.d.ts +1 -0
- package/order-server/services/amqp.purchased-info.service.js +3 -0
- package/package.json +1 -1
|
@@ -14,3 +14,4 @@ export * from './get-changed-option-public-ids-by-ids.dto';
|
|
|
14
14
|
export * from './get-p-infos-by-ids.dto';
|
|
15
15
|
export * from './get-p-infos-for-luxury-appraisal.dto';
|
|
16
16
|
export * from './get-refund-rate.dto';
|
|
17
|
+
export * from './get-public-ids-by-receive-info-changed-in-before-delivery.dto';
|
|
@@ -30,3 +30,4 @@ __exportStar(require("./get-changed-option-public-ids-by-ids.dto"), exports);
|
|
|
30
30
|
__exportStar(require("./get-p-infos-by-ids.dto"), exports);
|
|
31
31
|
__exportStar(require("./get-p-infos-for-luxury-appraisal.dto"), exports);
|
|
32
32
|
__exportStar(require("./get-refund-rate.dto"), exports);
|
|
33
|
+
__exportStar(require("./get-public-ids-by-receive-info-changed-in-before-delivery.dto"), exports);
|
package/order-server/dto/purchasedinfos/query/search-seller-transaction-history-by-process.dto.d.ts
CHANGED
|
@@ -127,6 +127,8 @@ export declare class SellerTransactionHistory {
|
|
|
127
127
|
splitDeliveryDataList?: SplitDeliveryData[];
|
|
128
128
|
/** 남은 출고 수량 */
|
|
129
129
|
remainingShipQuantity?: number;
|
|
130
|
+
/** 배송준비중에서 배송정보 변경됨 */
|
|
131
|
+
isReceiveInfoChangedInBeforeDelivery?: boolean;
|
|
130
132
|
}
|
|
131
133
|
export declare class SearchSellerTransactionHistoryByProcessResult {
|
|
132
134
|
sellerTransactionHistories: SellerTransactionHistory[];
|
|
@@ -43,4 +43,5 @@ export declare class AmqpPurchasedInfoService {
|
|
|
43
43
|
extendWaitingReceiveByChannelTalk(payload: ExtendWaitingReceiveByChannelTalkPayload, param: AbstractParam): Promise<string>;
|
|
44
44
|
updatePInfoAttributionHistoryIdBulk(payload: UpdatePInfoAttributionHistoryIdBulkPayload, param: AbstractParam): Promise<void>;
|
|
45
45
|
extendWaitingReceiveByChannelTalkSlackWebhook(payload: any, param: AbstractParam): Promise<string>;
|
|
46
|
+
getPublicIdsByReceiveInfoChangedInBeforeDelivery(param: AbstractParam): Promise<string>;
|
|
46
47
|
}
|
|
@@ -138,6 +138,9 @@ let AmqpPurchasedInfoService = class AmqpPurchasedInfoService {
|
|
|
138
138
|
payload, param) {
|
|
139
139
|
return this.amqpManager.call('채널톡용 수령확인 연장 처리', 'purchased-info.update.extend-waiting-receive-by-channel-talk-slack-webhook', payload, param, { isErrorThrowing: true });
|
|
140
140
|
}
|
|
141
|
+
async getPublicIdsByReceiveInfoChangedInBeforeDelivery(param) {
|
|
142
|
+
return this.amqpManager.call('발송준비중 수령정보 변경된 결제건 주문번호 조회', 'purchased-info.get.public-ids-by-receive-info-changed-in-before-delivery', {}, param, { isErrorThrowing: true });
|
|
143
|
+
}
|
|
141
144
|
};
|
|
142
145
|
exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService;
|
|
143
146
|
exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService = __decorate([
|