@yolo-croket-dev/amqp-access 0.0.89-jun.5 → 0.0.89-jun.7
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 +1 -1
- package/user-service/dto/ask/query/atlas/get-ask-accumulated-settle-amount-by-atlas.dto.d.ts +2 -2
- package/user-service/dto/ask/query/atlas/get-ask-accumulated-settle-amount-by-atlas.dto.js +7 -7
- package/user-service/dto/ask/query/atlas/get-ask-done-settle-amount-by-atlas.dto.d.ts +10 -0
- package/user-service/dto/ask/query/atlas/get-ask-done-settle-amount-by-atlas.dto.js +28 -0
- package/user-service/dto/ask/query/atlas/index.d.ts +1 -0
- package/user-service/dto/ask/query/atlas/index.js +1 -0
package/package.json
CHANGED
package/user-service/dto/ask/query/atlas/get-ask-accumulated-settle-amount-by-atlas.dto.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export declare class
|
|
1
|
+
export declare class GetAskAccumulatedSettleAmountByAtlasPayload {
|
|
2
2
|
paymentSDate: Date;
|
|
3
3
|
paymentEDate?: Date;
|
|
4
4
|
}
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class GetAskAccumulatedSettleAmountByAtlasResult {
|
|
6
6
|
/** 누적 금액 금액 */
|
|
7
7
|
accumulatedSettleAmount: number;
|
|
8
8
|
}
|
|
@@ -9,20 +9,20 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
12
|
+
exports.GetAskAccumulatedSettleAmountByAtlasResult = exports.GetAskAccumulatedSettleAmountByAtlasPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
-
class
|
|
14
|
+
class GetAskAccumulatedSettleAmountByAtlasPayload {
|
|
15
15
|
}
|
|
16
|
-
exports.
|
|
16
|
+
exports.GetAskAccumulatedSettleAmountByAtlasPayload = GetAskAccumulatedSettleAmountByAtlasPayload;
|
|
17
17
|
__decorate([
|
|
18
18
|
(0, class_validator_1.IsDateString)(),
|
|
19
19
|
__metadata("design:type", Date)
|
|
20
|
-
],
|
|
20
|
+
], GetAskAccumulatedSettleAmountByAtlasPayload.prototype, "paymentSDate", void 0);
|
|
21
21
|
__decorate([
|
|
22
22
|
(0, class_validator_1.IsDateString)(),
|
|
23
23
|
(0, class_validator_1.IsOptional)(),
|
|
24
24
|
__metadata("design:type", Date)
|
|
25
|
-
],
|
|
26
|
-
class
|
|
25
|
+
], GetAskAccumulatedSettleAmountByAtlasPayload.prototype, "paymentEDate", void 0);
|
|
26
|
+
class GetAskAccumulatedSettleAmountByAtlasResult {
|
|
27
27
|
}
|
|
28
|
-
exports.
|
|
28
|
+
exports.GetAskAccumulatedSettleAmountByAtlasResult = GetAskAccumulatedSettleAmountByAtlasResult;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare class GetPInfoDoneSettleAmountByAtlasPayload {
|
|
2
|
+
settleSDate: Date;
|
|
3
|
+
settleEDate?: Date;
|
|
4
|
+
}
|
|
5
|
+
export declare class GetPInfoDoneSettleAmountByAtlasResult {
|
|
6
|
+
/** 정산완료 금액 */
|
|
7
|
+
doneSettleAmount: number;
|
|
8
|
+
/** 해외 정산 중 금액 */
|
|
9
|
+
abroadSettlingAmount: number;
|
|
10
|
+
}
|
|
@@ -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.GetPInfoDoneSettleAmountByAtlasResult = exports.GetPInfoDoneSettleAmountByAtlasPayload = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class GetPInfoDoneSettleAmountByAtlasPayload {
|
|
15
|
+
}
|
|
16
|
+
exports.GetPInfoDoneSettleAmountByAtlasPayload = GetPInfoDoneSettleAmountByAtlasPayload;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsDateString)(),
|
|
19
|
+
__metadata("design:type", Date)
|
|
20
|
+
], GetPInfoDoneSettleAmountByAtlasPayload.prototype, "settleSDate", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsDateString)(),
|
|
23
|
+
(0, class_validator_1.IsOptional)(),
|
|
24
|
+
__metadata("design:type", Date)
|
|
25
|
+
], GetPInfoDoneSettleAmountByAtlasPayload.prototype, "settleEDate", void 0);
|
|
26
|
+
class GetPInfoDoneSettleAmountByAtlasResult {
|
|
27
|
+
}
|
|
28
|
+
exports.GetPInfoDoneSettleAmountByAtlasResult = GetPInfoDoneSettleAmountByAtlasResult;
|
|
@@ -3,3 +3,4 @@ export * from './get-ask-settle-amount-info-by-atlas.dto';
|
|
|
3
3
|
export * from './get-ask-all-settle-amount-by-atlas.dto';
|
|
4
4
|
export * from './get-ask-legacy-settle-logs-by-atlas.dto';
|
|
5
5
|
export * from './get-ask-accumulated-settle-amount-by-atlas.dto';
|
|
6
|
+
export * from './get-ask-done-settle-amount-by-atlas.dto';
|
|
@@ -19,3 +19,4 @@ __exportStar(require("./get-ask-settle-amount-info-by-atlas.dto"), exports);
|
|
|
19
19
|
__exportStar(require("./get-ask-all-settle-amount-by-atlas.dto"), exports);
|
|
20
20
|
__exportStar(require("./get-ask-legacy-settle-logs-by-atlas.dto"), exports);
|
|
21
21
|
__exportStar(require("./get-ask-accumulated-settle-amount-by-atlas.dto"), exports);
|
|
22
|
+
__exportStar(require("./get-ask-done-settle-amount-by-atlas.dto"), exports);
|