@yolo-croket-dev/amqp-access 0.3.7 → 0.3.8

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.
Files changed (22) hide show
  1. package/analytics-service/amqp.analytics-service.provider.d.ts +1 -1
  2. package/coupon-server/amqp.coupon-server.provider.d.ts +1 -1
  3. package/elastic-service/amqp.elastic-service.provider.d.ts +1 -1
  4. package/image-server/amqp.image-server.provider.d.ts +1 -1
  5. package/manage-service/amqp.manage-service.provider.d.ts +1 -1
  6. package/notification-service/amqp.notification-service.provider.d.ts +1 -1
  7. package/order-server/amqp.order-server.provider.d.ts +1 -1
  8. package/order-server/dto/purchasedinfos/query/get-purchased-infos-for-unconfirmed-waiting-order-sellers-excel.dto.d.ts +15 -0
  9. package/order-server/dto/purchasedinfos/query/get-purchased-infos-for-unconfirmed-waiting-order-sellers-excel.dto.js +9 -0
  10. package/order-server/dto/purchasedinfos/query/index.d.ts +1 -0
  11. package/order-server/dto/purchasedinfos/query/index.js +1 -0
  12. package/order-server/services/amqp.purchased-info.service.d.ts +2 -1
  13. package/order-server/services/amqp.purchased-info.service.js +4 -0
  14. package/package.json +1 -1
  15. package/payment-service/amqp.payment-service.provider.d.ts +1 -1
  16. package/selection-server/amqp.selection-server.provider.d.ts +1 -1
  17. package/store-item-server/amqp.store-item-server.provider.d.ts +1 -1
  18. package/user-service/amqp.user-service.provider.d.ts +1 -1
  19. package/selection-server/dto/selection-frame-data/query/search-complete-selection-frame-datas.dto.d.ts +0 -7
  20. package/selection-server/dto/selection-frame-data/query/search-complete-selection-frame-datas.dto.js +0 -23
  21. package/user-service/dto/seller-portal-channel-link-request/command/create-seller-portal-channel-link-request.dto.d.ts +0 -7
  22. package/user-service/dto/seller-portal-channel-link-request/command/create-seller-portal-channel-link-request.dto.js +0 -25
@@ -1,4 +1,4 @@
1
1
  export declare const AnalyticsServiceProvider: {
2
2
  provide: string;
3
- useFactory: () => import("@nestjs/microservices").ClientProxy<Record<never, Function>, string>;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
4
  };
@@ -1,4 +1,4 @@
1
1
  export declare const CouponServerProvider: {
2
2
  provide: string;
3
- useFactory: () => import("@nestjs/microservices").ClientProxy<Record<never, Function>, string>;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
4
  };
@@ -1,4 +1,4 @@
1
1
  export declare const ElasticServiceProvider: {
2
2
  provide: string;
3
- useFactory: () => import("@nestjs/microservices").ClientProxy<Record<never, Function>, string>;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
4
  };
@@ -1,4 +1,4 @@
1
1
  export declare const ImageServerProvider: {
2
2
  provide: string;
3
- useFactory: () => import("@nestjs/microservices").ClientProxy<Record<never, Function>, string>;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
4
  };
@@ -1,4 +1,4 @@
1
1
  export declare const ManageServiceProvider: {
2
2
  provide: string;
3
- useFactory: () => import("@nestjs/microservices").ClientProxy<Record<never, Function>, string>;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
4
  };
@@ -1,4 +1,4 @@
1
1
  export declare const NotifiactionServiceProvider: {
2
2
  provide: string;
3
- useFactory: () => import("@nestjs/microservices").ClientProxy<Record<never, Function>, string>;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
4
  };
@@ -1,4 +1,4 @@
1
1
  export declare const OrderServerProvider: {
2
2
  provide: string;
3
- useFactory: () => import("@nestjs/microservices").ClientProxy<Record<never, Function>, string>;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
4
  };
@@ -0,0 +1,15 @@
1
+ export declare class UnconfirmedWaitingOrderSellerInfo {
2
+ username: string;
3
+ buyerId: string;
4
+ storeTitle: string;
5
+ sellerId: string;
6
+ storeId: string;
7
+ pastName: string;
8
+ pOptionNames: string[];
9
+ publicId: string;
10
+ paymentDate: string;
11
+ paidPrice: number;
12
+ }
13
+ export declare class GetPurchasedInfosForUnconfirmedWaitingOrderSellersExcelResult {
14
+ excelDatas: UnconfirmedWaitingOrderSellerInfo[];
15
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetPurchasedInfosForUnconfirmedWaitingOrderSellersExcelResult = exports.UnconfirmedWaitingOrderSellerInfo = void 0;
4
+ class UnconfirmedWaitingOrderSellerInfo {
5
+ }
6
+ exports.UnconfirmedWaitingOrderSellerInfo = UnconfirmedWaitingOrderSellerInfo;
7
+ class GetPurchasedInfosForUnconfirmedWaitingOrderSellersExcelResult {
8
+ }
9
+ exports.GetPurchasedInfosForUnconfirmedWaitingOrderSellersExcelResult = GetPurchasedInfosForUnconfirmedWaitingOrderSellersExcelResult;
@@ -4,3 +4,4 @@ export * from './get-partial-refund-processes-by-public-ids.dto';
4
4
  export * from './reload-p-infos-for-manage-buyer.dto';
5
5
  export * from './get-p-nums-for-show-ad-center-inflow.dto';
6
6
  export * from './get-p-infos-for-before-delivery-excel.dto';
7
+ export * from './get-purchased-infos-for-unconfirmed-waiting-order-sellers-excel.dto';
@@ -20,3 +20,4 @@ __exportStar(require("./get-partial-refund-processes-by-public-ids.dto"), export
20
20
  __exportStar(require("./reload-p-infos-for-manage-buyer.dto"), exports);
21
21
  __exportStar(require("./get-p-nums-for-show-ad-center-inflow.dto"), exports);
22
22
  __exportStar(require("./get-p-infos-for-before-delivery-excel.dto"), exports);
23
+ __exportStar(require("./get-purchased-infos-for-unconfirmed-waiting-order-sellers-excel.dto"), exports);
@@ -1,6 +1,6 @@
1
1
  import { ClientProxy } from '@nestjs/microservices';
2
2
  import { AbstractParam } from '@yolo-croket-dev/core';
3
- import { GetPInfoSettleAmountInfoByAtlasPayload, GetPInfoSettleAmountInfoByAtlasResult, GetPInfoAllSettleAmountByAtlasPayload, GetPInfoAllSettleAmountByAtlasResult, GetPInfoLegacySettleLogsByAtlasPayload, GetPInfoLegacySettleLogsByAtlasResult, GetPInfoAccumulatedSettleAmountByAtlasPayload, GetPInfoAccumulatedSettleAmountByAtlasResult, GetPInfoDoneSettleAmountByAtlasPayload, GetPInfoDoneSettleAmountByAtlasResult, GetPInfoExpectSettleAmountByAtlasPayload, GetPInfoExpectSettleAmountByAtlasResult, GetPartialRefundProcessesByPublicIdsPayload, GetPartialRefundProcessesByPublicIdsResult, GetPInfosForManageBuyerByAtlasPayload, GetPInfosForManageBuyerByAtlasResult, GetFacetPInfosForManageBuyerByAtlasPayload, GetFacetPInfosForManageBuyerByAtlasResult, ReloadPInfosForManageBuyerPayload, ReloadPInfosForManageBuyerResult, UpdateAdCenterCouponInfoPayload, UpdateDoneAdCenterCouponInfosPayload, CancelDoneAdCenterCouponInfosPayload, RequestCreateAdCenterCouponSettlePayload, PatchProcessV2ToCheckingStockPayload, PatchProcessV2ToCheckingStockResult, GetItemSaleInfosForSalesTeamByAtlasPayload, GetItemSaleInfosForSalesTeamByAtlasResult, GetItemSaleMergeDataForSalesTeamByAtlasPayload, GetItemSaleMergeDataForSalesTeamByAtlasResult, GetPNumsForShowAdCenterInflowPayload, GetPNumsForShowAdCenterInflowResult, GetPNumsGroupItemIdPayload, GetPNumsGroupItemIdResult, GetPInfoIdsForPredictSettlePayload, GetPInfoIdsForPredictSettleResult, GetPInfosForBeforeDeliveryExcelPayload, GetPInfosForBeforeDeliveryExcelResult } from '../dto/purchasedinfos';
3
+ import { GetPInfoSettleAmountInfoByAtlasPayload, GetPInfoSettleAmountInfoByAtlasResult, GetPInfoAllSettleAmountByAtlasPayload, GetPInfoAllSettleAmountByAtlasResult, GetPInfoLegacySettleLogsByAtlasPayload, GetPInfoLegacySettleLogsByAtlasResult, GetPInfoAccumulatedSettleAmountByAtlasPayload, GetPInfoAccumulatedSettleAmountByAtlasResult, GetPInfoDoneSettleAmountByAtlasPayload, GetPInfoDoneSettleAmountByAtlasResult, GetPInfoExpectSettleAmountByAtlasPayload, GetPInfoExpectSettleAmountByAtlasResult, GetPartialRefundProcessesByPublicIdsPayload, GetPartialRefundProcessesByPublicIdsResult, GetPInfosForManageBuyerByAtlasPayload, GetPInfosForManageBuyerByAtlasResult, GetFacetPInfosForManageBuyerByAtlasPayload, GetFacetPInfosForManageBuyerByAtlasResult, ReloadPInfosForManageBuyerPayload, ReloadPInfosForManageBuyerResult, UpdateAdCenterCouponInfoPayload, UpdateDoneAdCenterCouponInfosPayload, CancelDoneAdCenterCouponInfosPayload, RequestCreateAdCenterCouponSettlePayload, PatchProcessV2ToCheckingStockPayload, PatchProcessV2ToCheckingStockResult, GetItemSaleInfosForSalesTeamByAtlasPayload, GetItemSaleInfosForSalesTeamByAtlasResult, GetItemSaleMergeDataForSalesTeamByAtlasPayload, GetItemSaleMergeDataForSalesTeamByAtlasResult, GetPNumsForShowAdCenterInflowPayload, GetPNumsForShowAdCenterInflowResult, GetPNumsGroupItemIdPayload, GetPNumsGroupItemIdResult, GetPInfoIdsForPredictSettlePayload, GetPInfoIdsForPredictSettleResult, GetPInfosForBeforeDeliveryExcelPayload, GetPInfosForBeforeDeliveryExcelResult, GetPurchasedInfosForUnconfirmedWaitingOrderSellersExcelResult } from '../dto/purchasedinfos';
4
4
  export declare class AmqpPurchasedInfoService {
5
5
  private readonly client;
6
6
  private readonly amqpManager;
@@ -28,4 +28,5 @@ export declare class AmqpPurchasedInfoService {
28
28
  getPInfoIdsForPredictSettle(payload: GetPInfoIdsForPredictSettlePayload, param: AbstractParam): Promise<GetPInfoIdsForPredictSettleResult>;
29
29
  getPInfosForBeforeDeliveryExcel(payload: GetPInfosForBeforeDeliveryExcelPayload, param: AbstractParam): Promise<GetPInfosForBeforeDeliveryExcelResult[]>;
30
30
  migrationPayTryLogIdV2(param: AbstractParam): Promise<void>;
31
+ getPurchasedInfosForUnconfirmedWaitingOrderSellersExcel(param: AbstractParam): Promise<GetPurchasedInfosForUnconfirmedWaitingOrderSellersExcelResult>;
31
32
  }
@@ -90,6 +90,10 @@ let AmqpPurchasedInfoService = class AmqpPurchasedInfoService {
90
90
  async migrationPayTryLogIdV2(param) {
91
91
  return this.amqpManager.call('payTrylogId_v2 데이터 마이그레이션', 'purchased-info.migration.pay-try-log-id-v2', {}, param, { isErrorThrowing: true });
92
92
  }
93
+ // eslint-disable-next-line max-len
94
+ async getPurchasedInfosForUnconfirmedWaitingOrderSellersExcel(param) {
95
+ return this.amqpManager.call('주문확인중 2일 이상 미확인 셀러 조회 (엑셀 추출용)', 'purchased-info.get.p-infos-for-unconfirmed-waiting-order-sellers-excel', {}, param, { isErrorThrowing: true });
96
+ }
93
97
  };
94
98
  exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService;
95
99
  exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService = __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,4 +1,4 @@
1
1
  export declare const PaymentServiceProvider: {
2
2
  provide: string;
3
- useFactory: () => import("@nestjs/microservices").ClientProxy<Record<never, Function>, string>;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
4
  };
@@ -1,4 +1,4 @@
1
1
  export declare const SelectionServerProvider: {
2
2
  provide: string;
3
- useFactory: () => import("@nestjs/microservices").ClientProxy<Record<never, Function>, string>;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
4
  };
@@ -1,4 +1,4 @@
1
1
  export declare const StoreItemServerProvider: {
2
2
  provide: string;
3
- useFactory: () => import("@nestjs/microservices").ClientProxy<Record<never, Function>, string>;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
4
  };
@@ -1,4 +1,4 @@
1
1
  export declare const UserServiceProvider: {
2
2
  provide: string;
3
- useFactory: () => import("@nestjs/microservices").ClientProxy<Record<never, Function>, string>;
3
+ useFactory: () => import("@nestjs/microservices").ClientProxy & import("@nestjs/microservices").Closeable;
4
4
  };
@@ -1,7 +0,0 @@
1
- import { SelectionFrameDataEntity } from '@yolo-croket-dev/entity-v2';
2
- export declare class SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload {
3
- targetSelectionDataId: string;
4
- }
5
- export declare class SearchAllSelectionFrameDatasByTargetSelectionDataIdResult {
6
- selectionFrameDatas: SelectionFrameDataEntity[];
7
- }
@@ -1,23 +0,0 @@
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.SearchAllSelectionFrameDatasByTargetSelectionDataIdResult = exports.SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload = void 0;
13
- const class_validator_1 = require("class-validator");
14
- class SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload {
15
- }
16
- exports.SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload = SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload;
17
- __decorate([
18
- (0, class_validator_1.IsMongoId)(),
19
- __metadata("design:type", String)
20
- ], SearchAllSelectionFrameDatasByTargetSelectionDataIdPayload.prototype, "targetSelectionDataId", void 0);
21
- class SearchAllSelectionFrameDatasByTargetSelectionDataIdResult {
22
- }
23
- exports.SearchAllSelectionFrameDatasByTargetSelectionDataIdResult = SearchAllSelectionFrameDatasByTargetSelectionDataIdResult;
@@ -1,7 +0,0 @@
1
- export declare enum RequestTypeEnum {
2
- onlyPortal = "onlyPortal",
3
- portalAndAd = "portalAndAd"
4
- }
5
- export declare class CreateSellerPortalChannelLinkRequestPayload {
6
- requestType: RequestTypeEnum;
7
- }
@@ -1,25 +0,0 @@
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.CreateSellerPortalChannelLinkRequestPayload = exports.RequestTypeEnum = void 0;
13
- const class_validator_1 = require("class-validator");
14
- var RequestTypeEnum;
15
- (function (RequestTypeEnum) {
16
- RequestTypeEnum["onlyPortal"] = "onlyPortal";
17
- RequestTypeEnum["portalAndAd"] = "portalAndAd";
18
- })(RequestTypeEnum || (exports.RequestTypeEnum = RequestTypeEnum = {}));
19
- class CreateSellerPortalChannelLinkRequestPayload {
20
- }
21
- exports.CreateSellerPortalChannelLinkRequestPayload = CreateSellerPortalChannelLinkRequestPayload;
22
- __decorate([
23
- (0, class_validator_1.IsEnum)(RequestTypeEnum),
24
- __metadata("design:type", String)
25
- ], CreateSellerPortalChannelLinkRequestPayload.prototype, "requestType", void 0);