@yolo-croket-dev/amqp-access 0.7.147 → 0.7.148

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.7.147",
3
+ "version": "0.7.148",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,4 +1,4 @@
1
- import { AuthorTypeEnum, BlockRefundWithdrawTypeEnum, CartTypeEnum, PaymentMethodEnum, RefundPendingTypeEnum, RefundReturnTypeEnum, SellerRefundApprovalTypeEnum, SortTypeEnum } from './get-refunds-for-admin.enum';
1
+ import { SortTypeEnum } from './get-refunds-for-admin.enum';
2
2
  /**
3
3
  * @author jun
4
4
  * @description 관리자 환불 오류 리스트 조회 payload
@@ -8,46 +8,4 @@ export declare class GetRefundErrorsForAdminPayload {
8
8
  page: number;
9
9
  limit: number;
10
10
  sortType: SortTypeEnum;
11
- /** (결제) 결제일 기준 */
12
- paymentStartDate?: Date;
13
- /** (결제) 결제일 기준 */
14
- paymentEndDate?: Date;
15
- /** (환불) 환불 신청일 기준 */
16
- refundRequestStartDate?: Date;
17
- /** (환불) 환불 신청일 기준 */
18
- refundRequestEndDate?: Date;
19
- /** (환불) 환불 상태 */
20
- refundProcess?: string;
21
- /** (환불) 마지막 거래 상태 */
22
- PInfoLastProcess?: string;
23
- /** (환불) 셀러 승인 여부 */
24
- sellerRefundApprovalType?: SellerRefundApprovalTypeEnum;
25
- /** (환불) 환불 보류 */
26
- refundPendingType?: RefundPendingTypeEnum;
27
- /** (환불) 신청자 */
28
- _authorType?: AuthorTypeEnum;
29
- /** (환불) 반품 정보 */
30
- refundReturnType?: RefundReturnTypeEnum;
31
- /** (결제) 장바구니 결제 */
32
- cartType?: CartTypeEnum;
33
- /** (결제) 결제 방법 */
34
- paymentMethod?: PaymentMethodEnum;
35
- /** (환불) 구매자의 유저 아이디 */
36
- buyerId?: string;
37
- /** (환불) 셀러의 유저 아이디 */
38
- sellerId?: string;
39
- /** (유저) 구매자 이름 */
40
- buyerName?: string;
41
- /** (스토어) 스토어 타이틀 */
42
- storeTitle?: string;
43
- /** (결제) imp_uid */
44
- imp_uid?: string;
45
- /** (결제) publicId */
46
- publicId?: string;
47
- /** (환불) pending메모 */
48
- pendingMemo?: string;
49
- /** (환불) cs1메모 */
50
- cs1Memo?: string;
51
- blockRefundWithdrawType?: BlockRefundWithdrawTypeEnum;
52
- payTryLogId?: string;
53
11
  }
@@ -38,113 +38,3 @@ __decorate([
38
38
  (0, class_validator_1.IsEnum)(get_refunds_for_admin_enum_1.SortTypeEnum),
39
39
  __metadata("design:type", String)
40
40
  ], GetRefundErrorsForAdminPayload.prototype, "sortType", void 0);
41
- __decorate([
42
- (0, class_validator_1.IsDateString)(),
43
- (0, class_validator_1.IsOptional)(),
44
- __metadata("design:type", Date)
45
- ], GetRefundErrorsForAdminPayload.prototype, "paymentStartDate", void 0);
46
- __decorate([
47
- (0, class_validator_1.IsDateString)(),
48
- (0, class_validator_1.IsOptional)(),
49
- __metadata("design:type", Date)
50
- ], GetRefundErrorsForAdminPayload.prototype, "paymentEndDate", void 0);
51
- __decorate([
52
- (0, class_validator_1.IsDateString)(),
53
- (0, class_validator_1.IsOptional)(),
54
- __metadata("design:type", Date)
55
- ], GetRefundErrorsForAdminPayload.prototype, "refundRequestStartDate", void 0);
56
- __decorate([
57
- (0, class_validator_1.IsDateString)(),
58
- (0, class_validator_1.IsOptional)(),
59
- __metadata("design:type", Date)
60
- ], GetRefundErrorsForAdminPayload.prototype, "refundRequestEndDate", void 0);
61
- __decorate([
62
- (0, class_validator_1.IsString)(),
63
- (0, class_validator_1.IsOptional)(),
64
- __metadata("design:type", String)
65
- ], GetRefundErrorsForAdminPayload.prototype, "refundProcess", void 0);
66
- __decorate([
67
- (0, class_validator_1.IsString)(),
68
- (0, class_validator_1.IsOptional)(),
69
- __metadata("design:type", String)
70
- ], GetRefundErrorsForAdminPayload.prototype, "PInfoLastProcess", void 0);
71
- __decorate([
72
- (0, class_validator_1.IsEnum)(get_refunds_for_admin_enum_1.SellerRefundApprovalTypeEnum),
73
- (0, class_validator_1.IsOptional)(),
74
- __metadata("design:type", String)
75
- ], GetRefundErrorsForAdminPayload.prototype, "sellerRefundApprovalType", void 0);
76
- __decorate([
77
- (0, class_validator_1.IsEnum)(get_refunds_for_admin_enum_1.RefundPendingTypeEnum),
78
- (0, class_validator_1.IsOptional)(),
79
- __metadata("design:type", String)
80
- ], GetRefundErrorsForAdminPayload.prototype, "refundPendingType", void 0);
81
- __decorate([
82
- (0, class_validator_1.IsEnum)(get_refunds_for_admin_enum_1.AuthorTypeEnum),
83
- (0, class_validator_1.IsOptional)(),
84
- __metadata("design:type", String)
85
- ], GetRefundErrorsForAdminPayload.prototype, "_authorType", void 0);
86
- __decorate([
87
- (0, class_validator_1.IsEnum)(get_refunds_for_admin_enum_1.RefundReturnTypeEnum),
88
- (0, class_validator_1.IsOptional)(),
89
- __metadata("design:type", String)
90
- ], GetRefundErrorsForAdminPayload.prototype, "refundReturnType", void 0);
91
- __decorate([
92
- (0, class_validator_1.IsEnum)(get_refunds_for_admin_enum_1.CartTypeEnum),
93
- (0, class_validator_1.IsOptional)(),
94
- __metadata("design:type", String)
95
- ], GetRefundErrorsForAdminPayload.prototype, "cartType", void 0);
96
- __decorate([
97
- (0, class_validator_1.IsEnum)(get_refunds_for_admin_enum_1.PaymentMethodEnum),
98
- (0, class_validator_1.IsOptional)(),
99
- __metadata("design:type", String)
100
- ], GetRefundErrorsForAdminPayload.prototype, "paymentMethod", void 0);
101
- __decorate([
102
- (0, class_validator_1.IsString)(),
103
- (0, class_validator_1.IsOptional)(),
104
- __metadata("design:type", String)
105
- ], GetRefundErrorsForAdminPayload.prototype, "buyerId", void 0);
106
- __decorate([
107
- (0, class_validator_1.IsString)(),
108
- (0, class_validator_1.IsOptional)(),
109
- __metadata("design:type", String)
110
- ], GetRefundErrorsForAdminPayload.prototype, "sellerId", void 0);
111
- __decorate([
112
- (0, class_validator_1.IsString)(),
113
- (0, class_validator_1.IsOptional)(),
114
- __metadata("design:type", String)
115
- ], GetRefundErrorsForAdminPayload.prototype, "buyerName", void 0);
116
- __decorate([
117
- (0, class_validator_1.IsString)(),
118
- (0, class_validator_1.IsOptional)(),
119
- __metadata("design:type", String)
120
- ], GetRefundErrorsForAdminPayload.prototype, "storeTitle", void 0);
121
- __decorate([
122
- (0, class_validator_1.IsString)(),
123
- (0, class_validator_1.IsOptional)(),
124
- __metadata("design:type", String)
125
- ], GetRefundErrorsForAdminPayload.prototype, "imp_uid", void 0);
126
- __decorate([
127
- (0, class_validator_1.IsString)(),
128
- (0, class_validator_1.IsOptional)(),
129
- __metadata("design:type", String)
130
- ], GetRefundErrorsForAdminPayload.prototype, "publicId", void 0);
131
- __decorate([
132
- (0, class_validator_1.IsString)(),
133
- (0, class_validator_1.IsOptional)(),
134
- __metadata("design:type", String)
135
- ], GetRefundErrorsForAdminPayload.prototype, "pendingMemo", void 0);
136
- __decorate([
137
- (0, class_validator_1.IsString)(),
138
- (0, class_validator_1.IsOptional)(),
139
- __metadata("design:type", String)
140
- ], GetRefundErrorsForAdminPayload.prototype, "cs1Memo", void 0);
141
- __decorate([
142
- (0, class_validator_1.IsEnum)(get_refunds_for_admin_enum_1.BlockRefundWithdrawTypeEnum),
143
- (0, class_validator_1.IsOptional)(),
144
- __metadata("design:type", String)
145
- ], GetRefundErrorsForAdminPayload.prototype, "blockRefundWithdrawType", void 0);
146
- __decorate([
147
- (0, class_validator_1.IsMongoId)(),
148
- (0, class_validator_1.IsOptional)(),
149
- __metadata("design:type", String)
150
- ], GetRefundErrorsForAdminPayload.prototype, "payTryLogId", void 0);