@yolo-croket-dev/amqp-access 0.0.50 → 0.0.51

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.0.50",
3
+ "version": "0.0.51",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -27,4 +27,4 @@
27
27
  "class-validator": "^0.13.2",
28
28
  "dotenv": "^16.3.1"
29
29
  }
30
- }
30
+ }
@@ -11,17 +11,17 @@ export declare class SellerTransactionHistory {
11
11
  /** 주문번호 */
12
12
  publicId: string;
13
13
  /** 배송 방법 */
14
- DType: string;
14
+ DType?: string;
15
15
  /** 택배사 */
16
- SCompany: string;
16
+ SCompany?: string;
17
17
  /** 송장번호 */
18
- invoice: string;
18
+ invoice?: string;
19
19
  /** 발송일 */
20
- deliveryDate: string;
20
+ deliveryDate?: string;
21
21
  /** 거래 상태 */
22
22
  process: string;
23
- /** 결제일 */
24
- paymentDate: string;
23
+ /** 결제일 (입금전의 경우 없음.) */
24
+ paymentDate?: string;
25
25
  /** 상품명 */
26
26
  itemName: string;
27
27
  /** 상품 옵션 */
@@ -37,29 +37,29 @@ export declare class SellerTransactionHistory {
37
37
  /** 총 거래 금액 */
38
38
  totalPrice: number;
39
39
  /** 합배송 여부 */
40
- isBundleStr: string;
40
+ isBundleStr?: string;
41
41
  /** 합배송 코드(합배송 아이디) */
42
- bundleId: string;
42
+ bundleId?: string;
43
43
  /** 주문확인일 */
44
- acceptOrderDate: string;
44
+ acceptOrderDate?: string;
45
45
  /** 최대 발송 예정 기한 */
46
- scheduledShippingDate: string;
46
+ scheduledShippingDate?: string;
47
47
  /** 구매자 이름 */
48
48
  buyerName: string;
49
49
  /** 구매자 연락처 */
50
50
  buyerPhoneNumber: string;
51
51
  /** 수령인 이름 */
52
- receiverName: string;
52
+ receiverName?: string;
53
53
  /** 수령인 연락처 */
54
- receiverPhoneNumber: string;
54
+ receiverPhoneNumber?: string;
55
55
  /** 개인통관 고유 부호 */
56
- PCCC: string;
56
+ PCCC?: string;
57
57
  /** 우편번호 */
58
- buyerPostCode: string;
58
+ buyerPostCode?: string;
59
59
  /** 수령인 주소 */
60
- receiverAddress: string;
60
+ receiverAddress?: string;
61
61
  /** 요청 사항 */
62
- requirement: string;
62
+ requirement?: string;
63
63
  /** 결제 수단 */
64
64
  paymentMethod: string;
65
65
  /** 플랫폼 수수료 공금가액 */
@@ -67,13 +67,13 @@ export declare class SellerTransactionHistory {
67
67
  /** 플랫폼 수수료 부가세액 */
68
68
  VAT: number;
69
69
  /** 정산 예정 금액 */
70
- settleAmount: number;
70
+ settleAmount?: number;
71
71
  /** 거래 완료일 */
72
- recTime: string;
72
+ recTime?: string;
73
73
  /** 해외 송금 시작일 */
74
- isProceedingDate: string;
74
+ isProceedingDate?: string;
75
75
  /** 정산 완료일 */
76
- settlementDate: string;
76
+ settlementDate?: string;
77
77
  /** 상품 링크 */
78
78
  itemUrl: string;
79
79
  /** 특이사항 */