@yolo-croket-dev/amqp-access 0.6.84 → 0.6.85-hj-1

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.
@@ -1,5 +1,6 @@
1
1
  import { PurchasedProcessEnum } from '@yolo-croket-dev/entity';
2
2
  import { PurchasedProcessV2Enum } from '@yolo-croket-dev/entity-v2';
3
+ import { StoreItemKeyword } from '@yolo-croket-dev/dto-v2/user-service';
3
4
  export declare class SearchSellerTransactionHistoryByProcessPayload {
4
5
  /** 시작 날짜 */
5
6
  startDate: string;
@@ -110,6 +111,8 @@ export declare class SellerTransactionHistory {
110
111
  expectSettleDate?: string;
111
112
  /** 사방넷 상품 등록 여부 */
112
113
  isSabang?: boolean;
114
+ /** 상품 키워드 */
115
+ itemKeywords?: StoreItemKeyword[];
113
116
  }
114
117
  export declare class SearchSellerTransactionHistoryByProcessResult {
115
118
  sellerTransactionHistories: SellerTransactionHistory[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.6.84",
3
+ "version": "0.6.85-hj-1",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -11,7 +11,7 @@
11
11
  "build": "tsc",
12
12
  "lint": "eslint src/**/*.ts",
13
13
  "fix": "eslint --fix src/**/*.ts",
14
- "clean": "tsc --build --clean",
14
+ "clean": "tsc --build --clean",
15
15
  "prepublishOnly": "npm run build",
16
16
  "postpublish": "npm run clean"
17
17
  },