@yolo-croket-dev/amqp-access 0.7.54-jun.21 → 0.7.54-jun.23
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.
|
@@ -13,6 +13,8 @@ export declare class CancelBillingPaymentPayload {
|
|
|
13
13
|
cancelMsg: string;
|
|
14
14
|
/** 부분취소 여부 (0: 전체취소, 1: 부분취소) */
|
|
15
15
|
partialCancelCode: string;
|
|
16
|
+
/** 가맹점 주문번호 */
|
|
17
|
+
moid: string;
|
|
16
18
|
/** 유저 카드 빌링 ID (로그 저장용) */
|
|
17
19
|
userCardBillingId: string;
|
|
18
20
|
/** 구매 정보 ID (로그 저장용) */
|
|
@@ -24,6 +26,6 @@ export declare class CancelBillingPaymentPayload {
|
|
|
24
26
|
export declare class CancelBillingPaymentResult {
|
|
25
27
|
/** 취소 성공 여부 */
|
|
26
28
|
isCancelSuccess: boolean;
|
|
27
|
-
/** 나이스페이 빌링 취소 API 응답 */
|
|
28
|
-
nicepayBillingCancelApiResponse
|
|
29
|
+
/** 나이스페이 빌링 취소 API 응답 (API 호출 자체가 실패한 경우 null) */
|
|
30
|
+
nicepayBillingCancelApiResponse?: NicepayBillingCancelApiResponse;
|
|
29
31
|
}
|
|
@@ -39,6 +39,11 @@ __decorate([
|
|
|
39
39
|
(0, class_validator_1.IsNotEmpty)(),
|
|
40
40
|
__metadata("design:type", String)
|
|
41
41
|
], CancelBillingPaymentPayload.prototype, "partialCancelCode", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, class_validator_1.IsString)(),
|
|
44
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
45
|
+
__metadata("design:type", String)
|
|
46
|
+
], CancelBillingPaymentPayload.prototype, "moid", void 0);
|
|
42
47
|
__decorate([
|
|
43
48
|
(0, class_validator_1.IsString)(),
|
|
44
49
|
(0, class_validator_1.IsNotEmpty)(),
|