@yolo-croket-dev/amqp-access 0.0.49-jun.14 → 0.0.49-jun.16
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/delete-es-p-infos.dto.d.ts +3 -0
- package/elastic-service/dto/es-purchased-info/command/{delete-es-p-info.dto.js → delete-es-p-infos.dto.js} +4 -4
- package/elastic-service/dto/es-purchased-info/command/index.d.ts +2 -2
- package/elastic-service/dto/es-purchased-info/command/index.js +2 -2
- package/elastic-service/dto/es-purchased-info/command/update-es-p-infos.dto.d.ts +3 -0
- package/elastic-service/dto/es-purchased-info/command/{update-es-p-info.dto.js → update-es-p-infos.dto.js} +4 -4
- 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
- package/elastic-service/dto/es-purchased-info/command/delete-es-p-info.dto.d.ts +0 -3
- package/elastic-service/dto/es-purchased-info/command/update-es-p-info.dto.d.ts +0 -3
|
@@ -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.DeleteEsPInfosPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
-
class
|
|
14
|
+
class DeleteEsPInfosPayload {
|
|
15
15
|
}
|
|
16
|
-
exports.
|
|
16
|
+
exports.DeleteEsPInfosPayload = DeleteEsPInfosPayload;
|
|
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
|
+
], DeleteEsPInfosPayload.prototype, "PInfoIds", void 0);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './delete-es-p-
|
|
2
|
-
export * from './update-es-p-
|
|
1
|
+
export * from './delete-es-p-infos.dto';
|
|
2
|
+
export * from './update-es-p-infos.dto';
|
|
@@ -14,5 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./delete-es-p-
|
|
18
|
-
__exportStar(require("./update-es-p-
|
|
17
|
+
__exportStar(require("./delete-es-p-infos.dto"), exports);
|
|
18
|
+
__exportStar(require("./update-es-p-infos.dto"), exports);
|
|
@@ -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.UpdateEsPInfosPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
-
class
|
|
14
|
+
class UpdateEsPInfosPayload {
|
|
15
15
|
}
|
|
16
|
-
exports.
|
|
16
|
+
exports.UpdateEsPInfosPayload = UpdateEsPInfosPayload;
|
|
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
|
+
], UpdateEsPInfosPayload.prototype, "PInfoIds", 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);
|
package/package.json
CHANGED