@yolo-croket-dev/amqp-access 0.0.88 → 0.0.89-jun.0

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.
@@ -0,0 +1,9 @@
1
+ export declare class GetPInfoAllSettleAmountByAtlasV2Payload {
2
+ settleSDate: Date;
3
+ settleEDate?: Date;
4
+ }
5
+ export declare class GetPInfoAllSettleAmountByAtlasV2Result {
6
+ /** 정산받은 금액 */
7
+ doneSettleAmount: number;
8
+ abroadSettlingAmount: number;
9
+ }
@@ -0,0 +1,28 @@
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.GetPInfoAllSettleAmountByAtlasV2Result = exports.GetPInfoAllSettleAmountByAtlasV2Payload = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ class GetPInfoAllSettleAmountByAtlasV2Payload {
15
+ }
16
+ exports.GetPInfoAllSettleAmountByAtlasV2Payload = GetPInfoAllSettleAmountByAtlasV2Payload;
17
+ __decorate([
18
+ (0, class_validator_1.IsDateString)(),
19
+ __metadata("design:type", Date)
20
+ ], GetPInfoAllSettleAmountByAtlasV2Payload.prototype, "settleSDate", void 0);
21
+ __decorate([
22
+ (0, class_validator_1.IsDateString)(),
23
+ (0, class_validator_1.IsOptional)(),
24
+ __metadata("design:type", Date)
25
+ ], GetPInfoAllSettleAmountByAtlasV2Payload.prototype, "settleEDate", void 0);
26
+ class GetPInfoAllSettleAmountByAtlasV2Result {
27
+ }
28
+ exports.GetPInfoAllSettleAmountByAtlasV2Result = GetPInfoAllSettleAmountByAtlasV2Result;
@@ -1,3 +1,4 @@
1
1
  export * from './get-p-info-settle-amount-info-by-atlas.dto';
2
2
  export * from './get-p-info-legacy-settle-logs-by-atlas.dto';
3
3
  export * from './get-p-info-all-settle-amount-by-atlas.dto';
4
+ export * from './get-p-info-all-settle-amount-by-atlas.v2.dto';
@@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./get-p-info-settle-amount-info-by-atlas.dto"), exports);
18
18
  __exportStar(require("./get-p-info-legacy-settle-logs-by-atlas.dto"), exports);
19
19
  __exportStar(require("./get-p-info-all-settle-amount-by-atlas.dto"), exports);
20
+ __exportStar(require("./get-p-info-all-settle-amount-by-atlas.v2.dto"), exports);
@@ -36,9 +36,9 @@ export declare class SellerTransactionHistory {
36
36
  /** 총 결제 상품가 */
37
37
  originPrice: number;
38
38
  /** 배송비 */
39
- shippingFee: number;
39
+ shippingFee?: number;
40
40
  /** 총 거래 금액 */
41
- totalPrice: number;
41
+ totalPrice?: number;
42
42
  /** 합배송 여부 */
43
43
  isBundleStr?: string;
44
44
  /** 합배송 코드(합배송 아이디) */
@@ -66,9 +66,9 @@ export declare class SellerTransactionHistory {
66
66
  /** 결제 수단 */
67
67
  paymentMethod: string;
68
68
  /** 플랫폼 수수료 공금가액 */
69
- serviceFee: number;
69
+ serviceFee?: number;
70
70
  /** 플랫폼 수수료 부가세액 */
71
- VAT: number;
71
+ VAT?: number;
72
72
  /** 정산 예정 금액 */
73
73
  expectedProceeds?: number;
74
74
  /** 거래 완료일 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.0.88",
3
+ "version": "0.0.89-jun.0",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",