@yolo-croket-dev/amqp-access 0.7.112 → 0.7.114

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.
@@ -127,6 +127,8 @@ export declare class SellerTransactionHistory {
127
127
  splitDeliveryDataList?: SplitDeliveryData[];
128
128
  /** 남은 출고 수량 */
129
129
  remainingShipQuantity?: number;
130
+ /** 배송준비중에서 배송정보 변경됨 */
131
+ isReceiveInfoChangedInBeforeDelivery?: boolean;
130
132
  }
131
133
  export declare class SearchSellerTransactionHistoryByProcessResult {
132
134
  sellerTransactionHistories: SellerTransactionHistory[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.7.112",
3
+ "version": "0.7.114",
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.38",
23
23
  "@yolo-croket-dev/dto-v2": "^0.2.15",
24
24
  "@yolo-croket-dev/entity": "0.2.73",
25
- "@yolo-croket-dev/entity-v2": "0.2.142",
25
+ "@yolo-croket-dev/entity-v2": "0.2.143",
26
26
  "class-transformer": "^0.5.1",
27
27
  "class-validator": "^0.13.2",
28
28
  "dotenv": "^16.3.1"
@@ -5,3 +5,4 @@ export * from './bulk-write-store-admin-designated-auto-reply-message.dto';
5
5
  export * from './bulk-write-last-proceeds-goal-settle-date.dto';
6
6
  export * from './update-commission-info.dto';
7
7
  export * from './upsert-commission-period-info.dto';
8
+ export * from './update-description-notice-confirmed.dto';
@@ -21,3 +21,4 @@ __exportStar(require("./bulk-write-store-admin-designated-auto-reply-message.dto
21
21
  __exportStar(require("./bulk-write-last-proceeds-goal-settle-date.dto"), exports);
22
22
  __exportStar(require("./update-commission-info.dto"), exports);
23
23
  __exportStar(require("./upsert-commission-period-info.dto"), exports);
24
+ __exportStar(require("./update-description-notice-confirmed.dto"), exports);
@@ -0,0 +1,3 @@
1
+ export declare class UpdateDescriptionNoticeConfirmedPayload {
2
+ version: number;
3
+ }
@@ -0,0 +1,20 @@
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
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.UpdateDescriptionNoticeConfirmedPayload = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ class UpdateDescriptionNoticeConfirmedPayload {
15
+ }
16
+ exports.UpdateDescriptionNoticeConfirmedPayload = UpdateDescriptionNoticeConfirmedPayload;
17
+ __decorate([
18
+ (0, class_validator_1.IsNumber)(),
19
+ __metadata("design:type", Number)
20
+ ], UpdateDescriptionNoticeConfirmedPayload.prototype, "version", void 0);
@@ -0,0 +1,6 @@
1
+ export declare class GetDescriptionNoticeConfirmedPayload {
2
+ version: number;
3
+ }
4
+ export interface GetDescriptionNoticeConfirmedResult {
5
+ isConfirmed: boolean;
6
+ }
@@ -0,0 +1,20 @@
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
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.GetDescriptionNoticeConfirmedPayload = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ class GetDescriptionNoticeConfirmedPayload {
15
+ }
16
+ exports.GetDescriptionNoticeConfirmedPayload = GetDescriptionNoticeConfirmedPayload;
17
+ __decorate([
18
+ (0, class_validator_1.IsNumber)(),
19
+ __metadata("design:type", Number)
20
+ ], GetDescriptionNoticeConfirmedPayload.prototype, "version", void 0);
@@ -10,3 +10,4 @@ export * from './get-stores-by-seller-ids.dto';
10
10
  export * from './get-store-id-by-seller-id.dto';
11
11
  export * from './get-store-by-id.dto';
12
12
  export * from './get-store-commission-rate-by-id.dto';
13
+ export * from './get-description-notice-confirmed.dto';
@@ -26,3 +26,4 @@ __exportStar(require("./get-stores-by-seller-ids.dto"), exports);
26
26
  __exportStar(require("./get-store-id-by-seller-id.dto"), exports);
27
27
  __exportStar(require("./get-store-by-id.dto"), exports);
28
28
  __exportStar(require("./get-store-commission-rate-by-id.dto"), exports);
29
+ __exportStar(require("./get-description-notice-confirmed.dto"), exports);
@@ -1,7 +1,7 @@
1
1
  import { ClientProxy } from '@nestjs/microservices';
2
2
  import { AbstractParam } from '@yolo-croket-dev/core';
3
3
  import { DomesticAccountStoreEntity, StoreEntity, StoreForTossPaymentEntity } from '@yolo-croket-dev/entity-v2';
4
- import { GetDomesticAccountStoreInfoPayload, GetDomesticAccountStoresPayload, MigrationTossPaymentsSettlementProxySellerIdResult, UpdatePrivateSellerInfoSellerAddressPayload, GetUserIdsByStoreTitlePayload, GetUserIdsByStoreTitleResult, GetStoreIdsByStoreTitlePayload, GetStoreIdsByStoreTitleResult, GetStoreTitlesByStoreIdsPayload, GetStoreTitlesByStoreIdsResult, GetStoreIdsByAtlasPayload, GetStoreIdsByAtlasResult, GetStoreTitlesBySellerIdsPayload, GetStoreTitlesBySellerIdsResult, UpdateLastActivityDatePayload, GetStoresBySellerIdsPayload, StoreBySellerId, GetStoreIdBySellerIdPayload, GetStoreIdBySellerIdResult, BulkWriteStoreAdminDesignatedAutoReplyMessagePayload, BulkWriteStoreAdminDesignatedAutoReplyMessageResult, GetStoreByIdPayload, BulkWriteLastProceedsGoalSettleDatePayload, BulkWriteLastProceedsGoalSettleDateResult, UpdateCommissionInfoPayload, UpsertCommissionPeriodInfoPayload, GetStoreCommissionRateByIdPayload, GetStoreCommissionRateByIdResult } from '../dto/store';
4
+ import { GetDomesticAccountStoreInfoPayload, GetDomesticAccountStoresPayload, MigrationTossPaymentsSettlementProxySellerIdResult, UpdatePrivateSellerInfoSellerAddressPayload, GetUserIdsByStoreTitlePayload, GetUserIdsByStoreTitleResult, GetStoreIdsByStoreTitlePayload, GetStoreIdsByStoreTitleResult, GetStoreTitlesByStoreIdsPayload, GetStoreTitlesByStoreIdsResult, GetStoreIdsByAtlasPayload, GetStoreIdsByAtlasResult, GetStoreTitlesBySellerIdsPayload, GetStoreTitlesBySellerIdsResult, UpdateLastActivityDatePayload, GetStoresBySellerIdsPayload, StoreBySellerId, GetStoreIdBySellerIdPayload, GetStoreIdBySellerIdResult, BulkWriteStoreAdminDesignatedAutoReplyMessagePayload, BulkWriteStoreAdminDesignatedAutoReplyMessageResult, GetStoreByIdPayload, BulkWriteLastProceedsGoalSettleDatePayload, BulkWriteLastProceedsGoalSettleDateResult, UpdateCommissionInfoPayload, UpsertCommissionPeriodInfoPayload, GetStoreCommissionRateByIdPayload, GetStoreCommissionRateByIdResult, GetDescriptionNoticeConfirmedPayload, GetDescriptionNoticeConfirmedResult, UpdateDescriptionNoticeConfirmedPayload } from '../dto/store';
5
5
  import { GetStoresForTossPaymentPayload } from '../dto/store/query/get-stores-for-toss-payment.dto';
6
6
  export declare class AmqpStoreService {
7
7
  private readonly client;
@@ -28,4 +28,6 @@ export declare class AmqpStoreService {
28
28
  upsertCommissionPeriodInfo(payload: UpsertCommissionPeriodInfoPayload, param: AbstractParam): Promise<void>;
29
29
  getStoreCommissionRateById(payload: GetStoreCommissionRateByIdPayload, param: AbstractParam): Promise<GetStoreCommissionRateByIdResult>;
30
30
  getSellerIdsWithCommissionChange(param: AbstractParam): Promise<string[]>;
31
+ getDescriptionNoticeConfirmed(payload: GetDescriptionNoticeConfirmedPayload, param: AbstractParam): Promise<GetDescriptionNoticeConfirmedResult>;
32
+ updateDescriptionNoticeConfirmed(payload: UpdateDescriptionNoticeConfirmedPayload, param: AbstractParam): Promise<void>;
31
33
  }
@@ -84,6 +84,12 @@ let AmqpStoreService = class AmqpStoreService {
84
84
  async getSellerIdsWithCommissionChange(param) {
85
85
  return this.amqpManager.call('오늘 수수료 변경이 있는 셀러 ID 목록 조회', 'store.get.seller-ids-with-commission-change', {}, param, { isErrorThrowing: true });
86
86
  }
87
+ async getDescriptionNoticeConfirmed(payload, param) {
88
+ return this.amqpManager.call('상품 등록/수정 시 이미지/요약 내용 공지사항 확인 여부 조회', 'store.get.description-notice-confirmed', payload, param, { isErrorThrowing: true });
89
+ }
90
+ async updateDescriptionNoticeConfirmed(payload, param) {
91
+ return this.amqpManager.call('상품 등록/수정 시 이미지/요약 내용 공지사항 확인 여부 업데이트', 'store.update.description-notice-confirmed', payload, param, { isErrorThrowing: true });
92
+ }
87
93
  };
88
94
  exports.AmqpStoreService = AmqpStoreService;
89
95
  exports.AmqpStoreService = AmqpStoreService = __decorate([