@yolo-croket-dev/amqp-access 0.5.23-slowquery.10 → 0.5.23-slowquery.11

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.5.23-slowquery.10",
3
+ "version": "0.5.23-slowquery.11",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,6 +1,8 @@
1
1
  import { AdCenterStoreItemKeywordSellerBudget } from '@yolo-croket-dev/entity-v2/ad-center-storeitem-keyword';
2
2
  export declare class AdCenterStoreItemKeywordBudgetGetByIdPayload {
3
3
  /** 조회 요청한 셀러아이디 */
4
- sellerId: string;
4
+ sellerId?: string;
5
+ /** 광고 센터 키워드 예산 아이디 */
6
+ adCenterStoreItemKeywordSellerBudgetId?: string;
5
7
  }
6
8
  export declare type AdCenterStoreItemKeywordBudgetGetByIdResult = AdCenterStoreItemKeywordSellerBudget | null;
@@ -15,6 +15,12 @@ class AdCenterStoreItemKeywordBudgetGetByIdPayload {
15
15
  }
16
16
  __decorate([
17
17
  (0, class_validator_1.IsMongoId)(),
18
+ (0, class_validator_1.IsOptional)(),
18
19
  __metadata("design:type", String)
19
20
  ], AdCenterStoreItemKeywordBudgetGetByIdPayload.prototype, "sellerId", void 0);
21
+ __decorate([
22
+ (0, class_validator_1.IsMongoId)(),
23
+ (0, class_validator_1.IsOptional)(),
24
+ __metadata("design:type", String)
25
+ ], AdCenterStoreItemKeywordBudgetGetByIdPayload.prototype, "adCenterStoreItemKeywordSellerBudgetId", void 0);
20
26
  exports.AdCenterStoreItemKeywordBudgetGetByIdPayload = AdCenterStoreItemKeywordBudgetGetByIdPayload;