@yolo-croket-dev/amqp-access 0.6.96 → 0.6.97
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
|
@@ -58,6 +58,8 @@ export declare class RegStoreItemPayload {
|
|
|
58
58
|
GTIN?: string;
|
|
59
59
|
/** 키워드 목록 */
|
|
60
60
|
itemKeywords?: StoreItemKeyword[];
|
|
61
|
+
/** @description 상품 이름 업데이트 하지 않음 - true 면 상품명 유효성 검사 X */
|
|
62
|
+
isNotUpdateItemName?: boolean;
|
|
61
63
|
}
|
|
62
64
|
export declare class RegStoreItemResult {
|
|
63
65
|
itemId: string;
|
|
@@ -233,6 +233,11 @@ __decorate([
|
|
|
233
233
|
(0, class_transformer_1.Type)(() => StoreItemKeyword),
|
|
234
234
|
__metadata("design:type", Array)
|
|
235
235
|
], RegStoreItemPayload.prototype, "itemKeywords", void 0);
|
|
236
|
+
__decorate([
|
|
237
|
+
(0, class_validator_1.IsBoolean)(),
|
|
238
|
+
(0, class_validator_1.IsOptional)(),
|
|
239
|
+
__metadata("design:type", Boolean)
|
|
240
|
+
], RegStoreItemPayload.prototype, "isNotUpdateItemName", void 0);
|
|
236
241
|
class RegStoreItemResult {
|
|
237
242
|
}
|
|
238
243
|
exports.RegStoreItemResult = RegStoreItemResult;
|