@yolo-croket-dev/amqp-access 0.4.105-sj2 → 0.4.105-sj3
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.4.105-
|
|
3
|
+
"version": "0.4.105-sj3",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@yolo-croket-dev/domain": "0.1.4",
|
|
23
23
|
"@yolo-croket-dev/dto-v2": "^0.1.7",
|
|
24
24
|
"@yolo-croket-dev/entity": "^0.2.10",
|
|
25
|
-
"@yolo-croket-dev/entity-v2": "^0.1.
|
|
25
|
+
"@yolo-croket-dev/entity-v2": "^0.1.48-sj",
|
|
26
26
|
"class-transformer": "^0.5.1",
|
|
27
27
|
"class-validator": "^0.13.2",
|
|
28
28
|
"dotenv": "^16.3.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { BrandEntity } from '@yolo-croket-dev/entity-v2';
|
|
1
2
|
export declare class GetBrandsByBrandNamesPayload {
|
|
2
3
|
brandNames: string[];
|
|
3
4
|
}
|
|
4
|
-
export
|
|
5
|
-
brandNames: string[];
|
|
5
|
+
export interface GetBrandsByBrandNamesResult extends Pick<BrandEntity, 'brandName' | 'engBrandName'> {
|
|
6
6
|
}
|
|
@@ -9,7 +9,7 @@ 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.GetBrandsByBrandNamesPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
class GetBrandsByBrandNamesPayload {
|
|
15
15
|
}
|
|
@@ -19,11 +19,3 @@ __decorate([
|
|
|
19
19
|
(0, class_validator_1.IsNotEmpty)(),
|
|
20
20
|
__metadata("design:type", Array)
|
|
21
21
|
], GetBrandsByBrandNamesPayload.prototype, "brandNames", void 0);
|
|
22
|
-
class GetBrandsByBrandNamesResult {
|
|
23
|
-
}
|
|
24
|
-
exports.GetBrandsByBrandNamesResult = GetBrandsByBrandNamesResult;
|
|
25
|
-
__decorate([
|
|
26
|
-
(0, class_validator_1.IsString)({ each: true }),
|
|
27
|
-
(0, class_validator_1.IsNotEmpty)(),
|
|
28
|
-
__metadata("design:type", Array)
|
|
29
|
-
], GetBrandsByBrandNamesResult.prototype, "brandNames", void 0);
|