@yolo-croket-dev/amqp-access 0.0.49-jun.13 → 0.0.49-jun.15
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/elastic-service/dto/es-purchased-info/command/update-es-p-info.dto.d.ts +1 -1
- package/elastic-service/dto/es-purchased-info/command/update-es-p-info.dto.js +4 -4
- package/elastic-service/dto/es-purchased-info/query/count-group-es-p-infos-for-mange-buyer.dto.d.ts +2 -2
- package/elastic-service/dto/es-purchased-info/query/count-group-es-p-infos-for-mange-buyer.dto.js +7 -7
- package/elastic-service/dto/es-purchased-info/query/get-es-p-infos-for-mange-buyer.dto.d.ts +2 -2
- package/elastic-service/dto/es-purchased-info/query/get-es-p-infos-for-mange-buyer.dto.js +9 -9
- package/package.json +1 -1
|
@@ -9,13 +9,13 @@ 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.UpdateEsPInfoPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
-
class
|
|
14
|
+
class UpdateEsPInfoPayload {
|
|
15
15
|
}
|
|
16
|
-
exports.
|
|
16
|
+
exports.UpdateEsPInfoPayload = UpdateEsPInfoPayload;
|
|
17
17
|
__decorate([
|
|
18
18
|
(0, class_validator_1.IsMongoId)({ each: true }),
|
|
19
19
|
(0, class_validator_1.IsArray)(),
|
|
20
20
|
__metadata("design:type", Array)
|
|
21
|
-
],
|
|
21
|
+
], UpdateEsPInfoPayload.prototype, "PInfoIds", void 0);
|
package/elastic-service/dto/es-purchased-info/query/count-group-es-p-infos-for-mange-buyer.dto.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export declare class
|
|
1
|
+
export declare class CountGroupEsPInfoForManageBuyerPayload {
|
|
2
2
|
sellerId?: string;
|
|
3
3
|
paymentSDate?: Date;
|
|
4
4
|
paymentEDate?: Date;
|
|
5
5
|
searchText?: string;
|
|
6
6
|
}
|
|
7
|
-
export interface
|
|
7
|
+
export interface CountGroupEsPInfoForManageBuyerResult {
|
|
8
8
|
processInfos: {
|
|
9
9
|
process: string;
|
|
10
10
|
count: number;
|
package/elastic-service/dto/es-purchased-info/query/count-group-es-p-infos-for-mange-buyer.dto.js
CHANGED
|
@@ -9,28 +9,28 @@ 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.CountGroupEsPInfoForManageBuyerPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
-
class
|
|
14
|
+
class CountGroupEsPInfoForManageBuyerPayload {
|
|
15
15
|
}
|
|
16
|
-
exports.
|
|
16
|
+
exports.CountGroupEsPInfoForManageBuyerPayload = CountGroupEsPInfoForManageBuyerPayload;
|
|
17
17
|
__decorate([
|
|
18
18
|
(0, class_validator_1.IsMongoId)(),
|
|
19
19
|
(0, class_validator_1.IsOptional)(),
|
|
20
20
|
__metadata("design:type", String)
|
|
21
|
-
],
|
|
21
|
+
], CountGroupEsPInfoForManageBuyerPayload.prototype, "sellerId", void 0);
|
|
22
22
|
__decorate([
|
|
23
23
|
(0, class_validator_1.IsDateString)(),
|
|
24
24
|
(0, class_validator_1.IsOptional)(),
|
|
25
25
|
__metadata("design:type", Date)
|
|
26
|
-
],
|
|
26
|
+
], CountGroupEsPInfoForManageBuyerPayload.prototype, "paymentSDate", void 0);
|
|
27
27
|
__decorate([
|
|
28
28
|
(0, class_validator_1.IsDateString)(),
|
|
29
29
|
(0, class_validator_1.IsOptional)(),
|
|
30
30
|
__metadata("design:type", Date)
|
|
31
|
-
],
|
|
31
|
+
], CountGroupEsPInfoForManageBuyerPayload.prototype, "paymentEDate", void 0);
|
|
32
32
|
__decorate([
|
|
33
33
|
(0, class_validator_1.IsString)(),
|
|
34
34
|
(0, class_validator_1.IsOptional)(),
|
|
35
35
|
__metadata("design:type", String)
|
|
36
|
-
],
|
|
36
|
+
], CountGroupEsPInfoForManageBuyerPayload.prototype, "searchText", void 0);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare enum
|
|
1
|
+
export declare enum GetEsPInfoForManageBuyerSortTypeEnum {
|
|
2
2
|
'최신순' = "\uCD5C\uC2E0\uC21C",
|
|
3
3
|
'구매자 이름순' = "\uAD6C\uB9E4\uC790 \uC774\uB984\uC21C",
|
|
4
4
|
'상품명순' = "\uC0C1\uD488\uBA85\uC21C",
|
|
@@ -12,7 +12,7 @@ export declare class GetEsPInfosForMangeBuyerPayload {
|
|
|
12
12
|
searchText?: string;
|
|
13
13
|
page: number;
|
|
14
14
|
limit: number;
|
|
15
|
-
sortType:
|
|
15
|
+
sortType: GetEsPInfoForManageBuyerSortTypeEnum;
|
|
16
16
|
}
|
|
17
17
|
/** 구매자 관리용 결제 정보 결고과 */
|
|
18
18
|
export interface GetEsPInfosForMangeBuyerResult {
|
|
@@ -9,15 +9,15 @@ 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.GetEsPInfosForMangeBuyerPayload = exports.
|
|
12
|
+
exports.GetEsPInfosForMangeBuyerPayload = exports.GetEsPInfoForManageBuyerSortTypeEnum = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
-
var
|
|
15
|
-
(function (
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
})(
|
|
14
|
+
var GetEsPInfoForManageBuyerSortTypeEnum;
|
|
15
|
+
(function (GetEsPInfoForManageBuyerSortTypeEnum) {
|
|
16
|
+
GetEsPInfoForManageBuyerSortTypeEnum["\uCD5C\uC2E0\uC21C"] = "\uCD5C\uC2E0\uC21C";
|
|
17
|
+
GetEsPInfoForManageBuyerSortTypeEnum["\uAD6C\uB9E4\uC790 \uC774\uB984\uC21C"] = "\uAD6C\uB9E4\uC790 \uC774\uB984\uC21C";
|
|
18
|
+
GetEsPInfoForManageBuyerSortTypeEnum["\uC0C1\uD488\uBA85\uC21C"] = "\uC0C1\uD488\uBA85\uC21C";
|
|
19
|
+
GetEsPInfoForManageBuyerSortTypeEnum["\uC9C4\uD589\uC0C1\uD0DC\uC21C"] = "\uC9C4\uD589\uC0C1\uD0DC\uC21C";
|
|
20
|
+
})(GetEsPInfoForManageBuyerSortTypeEnum || (exports.GetEsPInfoForManageBuyerSortTypeEnum = GetEsPInfoForManageBuyerSortTypeEnum = {}));
|
|
21
21
|
/** 구매자 관리용 결제 정보 리스트 조회 */
|
|
22
22
|
class GetEsPInfosForMangeBuyerPayload {
|
|
23
23
|
}
|
|
@@ -51,6 +51,6 @@ __decorate([
|
|
|
51
51
|
__metadata("design:type", Number)
|
|
52
52
|
], GetEsPInfosForMangeBuyerPayload.prototype, "limit", void 0);
|
|
53
53
|
__decorate([
|
|
54
|
-
(0, class_validator_1.IsEnum)(
|
|
54
|
+
(0, class_validator_1.IsEnum)(GetEsPInfoForManageBuyerSortTypeEnum),
|
|
55
55
|
__metadata("design:type", String)
|
|
56
56
|
], GetEsPInfosForMangeBuyerPayload.prototype, "sortType", void 0);
|