@yolo-croket-dev/amqp-access 0.7.14 → 0.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.7.14",
3
+ "version": "0.7.16",
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.2.27",
23
23
  "@yolo-croket-dev/dto-v2": "0.2.12",
24
24
  "@yolo-croket-dev/entity": "0.2.62",
25
- "@yolo-croket-dev/entity-v2": "0.2.109",
25
+ "@yolo-croket-dev/entity-v2": "^0.2.110",
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
1
  import { AdCenterSettle } from '@yolo-croket-dev/entity/src/ad-center-settle/ad-center-settle.schema';
2
2
  import { BusinessInfo } from '@yolo-croket-dev/entity/src/store';
3
- declare const AdCenterSettleForGoogleSheet_base: import("@nestjs/common").Type<Pick<AdCenterSettle, "_id" | "sellerId" | "couponInfo" | "publicId" | "pastStoreInfo" | "expectedSettleDateString" | "adType" | "adCenterStartDateString" | "adCenterEndDateString" | "actualSettleDateString" | "PInfoId" | "transactionInfo" | "subtractionSettleAmountInfo" | "bizMemo" | "financeMemo" | "settlementManagerInfo" | "googleSheetInfo">>;
3
+ declare const AdCenterSettleForGoogleSheet_base: import("@nestjs/common").Type<Pick<AdCenterSettle, "_id" | "sellerId" | "publicId" | "couponInfo" | "pastStoreInfo" | "expectedSettleDateString" | "adType" | "adCenterStartDateString" | "adCenterEndDateString" | "actualSettleDateString" | "PInfoId" | "transactionInfo" | "subtractionSettleAmountInfo" | "bizMemo" | "financeMemo" | "settlementManagerInfo" | "googleSheetInfo">>;
4
4
  /** 구글 시트용 광고센터정산 데이터 */
5
5
  export declare class AdCenterSettleForGoogleSheet extends AdCenterSettleForGoogleSheet_base {
6
6
  storeInfo: {
@@ -8,6 +8,7 @@ export declare class RegStoreItemBulkPayload {
8
8
  }
9
9
  export declare class RegStoreItemBulkErrorData {
10
10
  itemName: string;
11
+ rowNumber?: number;
11
12
  errMessage: string;
12
13
  errType: string;
13
14
  }
@@ -1,4 +1,5 @@
1
1
  import { BannerPlatformInfo as IBannerPlatformInfo } from '@yolo-croket-dev/entity-v2/store-item-banner';
2
+ import { StoreItemDetailBannerLanguageSelectedEnum } from '@yolo-croket-dev/entity-v2/store-item-detail-banner';
2
3
  declare class BannerPlatformInfo implements IBannerPlatformInfo {
3
4
  imgUrl: string;
4
5
  landingUrl: string;
@@ -9,5 +10,7 @@ export declare class CreateStoreItemDetailBannerPayload {
9
10
  description: string;
10
11
  web: BannerPlatformInfo;
11
12
  app: BannerPlatformInfo;
13
+ /** 글로벌 사이드 제한 데이터 */
14
+ languageSelected?: StoreItemDetailBannerLanguageSelectedEnum;
12
15
  }
13
16
  export {};
@@ -11,6 +11,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.CreateStoreItemDetailBannerPayload = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
+ const store_item_detail_banner_1 = require("@yolo-croket-dev/entity-v2/store-item-detail-banner");
14
15
  class BannerPlatformInfo {
15
16
  }
16
17
  __decorate([
@@ -47,3 +48,8 @@ __decorate([
47
48
  (0, class_validator_1.IsNotEmpty)(),
48
49
  __metadata("design:type", BannerPlatformInfo)
49
50
  ], CreateStoreItemDetailBannerPayload.prototype, "app", void 0);
51
+ __decorate([
52
+ (0, class_validator_1.IsOptional)(),
53
+ (0, class_validator_1.IsEnum)(store_item_detail_banner_1.StoreItemDetailBannerLanguageSelectedEnum),
54
+ __metadata("design:type", String)
55
+ ], CreateStoreItemDetailBannerPayload.prototype, "languageSelected", void 0);
@@ -1,8 +1,9 @@
1
1
  import { BannerPlatformInfo } from '@yolo-croket-dev/entity-v2/store-item-banner';
2
- import { StoreItemDetailBannerEntity } from '@yolo-croket-dev/entity-v2/store-item-detail-banner';
3
- export declare class GetStoreItemDetailBannerResult implements Pick<StoreItemDetailBannerEntity, '_id' | 'web' | 'app' | 'description'> {
2
+ import { StoreItemDetailBannerEntity, StoreItemDetailBannerLanguageSelectedEnum } from '@yolo-croket-dev/entity-v2/store-item-detail-banner';
3
+ export declare class GetStoreItemDetailBannerResult implements Pick<StoreItemDetailBannerEntity, '_id' | 'web' | 'app' | 'description' | 'languageSelected'> {
4
4
  _id: string;
5
5
  web: BannerPlatformInfo;
6
6
  app: BannerPlatformInfo;
7
7
  description: string;
8
+ languageSelected?: StoreItemDetailBannerLanguageSelectedEnum;
8
9
  }