@yolo-croket-dev/amqp-access 0.5.155-sj1 → 0.5.156
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/auth-service/dto/api-key.modules/api-secret-check/query/get-my-secret-check-info.dto.d.ts +4 -0
- package/auth-service/dto/api-key.modules/api-secret-check/query/get-my-secret-check-info.dto.js +19 -1
- package/package.json +2 -2
- package/store-item-server/dto/store-item/command/update-brand-infos.dto.d.ts +1 -1
package/auth-service/dto/api-key.modules/api-secret-check/query/get-my-secret-check-info.dto.d.ts
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
+
import { ApiSecretCheckTypeEnum } from '@yolo-croket-dev/entity-v2/api-key.modules/api-secret-check/api-secret-check.entity';
|
|
1
2
|
export declare const GetMySecretCheckInfoMessagePattern = "api-secret-check.get.my-info";
|
|
3
|
+
export declare class GetMySecretCheckPayload {
|
|
4
|
+
type?: ApiSecretCheckTypeEnum;
|
|
5
|
+
}
|
|
2
6
|
export declare class GetMySecretCheckResult {
|
|
3
7
|
isExists: boolean;
|
|
4
8
|
process?: string;
|
package/auth-service/dto/api-key.modules/api-secret-check/query/get-my-secret-check-info.dto.js
CHANGED
|
@@ -1,7 +1,25 @@
|
|
|
1
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
|
+
};
|
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetMySecretCheckResult = exports.GetMySecretCheckInfoMessagePattern = void 0;
|
|
12
|
+
exports.GetMySecretCheckResult = exports.GetMySecretCheckPayload = exports.GetMySecretCheckInfoMessagePattern = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const api_secret_check_entity_1 = require("@yolo-croket-dev/entity-v2/api-key.modules/api-secret-check/api-secret-check.entity");
|
|
4
15
|
exports.GetMySecretCheckInfoMessagePattern = 'api-secret-check.get.my-info';
|
|
16
|
+
class GetMySecretCheckPayload {
|
|
17
|
+
}
|
|
18
|
+
exports.GetMySecretCheckPayload = GetMySecretCheckPayload;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_validator_1.IsString)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], GetMySecretCheckPayload.prototype, "type", void 0);
|
|
5
23
|
class GetMySecretCheckResult {
|
|
6
24
|
}
|
|
7
25
|
exports.GetMySecretCheckResult = GetMySecretCheckResult;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-croket-dev/amqp-access",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.156",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -27,4 +27,4 @@
|
|
|
27
27
|
"class-validator": "^0.13.2",
|
|
28
28
|
"dotenv": "^16.3.1"
|
|
29
29
|
}
|
|
30
|
-
}
|
|
30
|
+
}
|
|
@@ -10,7 +10,7 @@ export declare class UpdateBrandInfosPayload {
|
|
|
10
10
|
export declare class UpdateBrandInfosErrorData {
|
|
11
11
|
itemId: string;
|
|
12
12
|
brandName: string;
|
|
13
|
-
engBrandName
|
|
13
|
+
engBrandName?: string;
|
|
14
14
|
subBrandName?: string;
|
|
15
15
|
}
|
|
16
16
|
export declare class UpdateBrandInfosResult {
|