@yolo-croket-dev/amqp-access 0.7.276 → 0.7.277
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/order-server/dto/purchased-info.modules/purchased-info-admin/query/get-refund-waiting-purchased-infos-for-admin.dto.d.ts +2 -0
- package/order-server/dto/purchased-info.modules/purchased-info-admin/query/get-refund-waiting-purchased-infos-for-admin.dto.js +2 -0
- package/package.json +2 -2
- package/payment-service/dto/ad-center-settle/query/get-ad-center-settles-for-google-sheet.dto.d.ts +1 -1
|
@@ -5,6 +5,8 @@ export declare enum RefundWaitingAdminStatusEnum {
|
|
|
5
5
|
PENDING = "PENDING",
|
|
6
6
|
/** 구매자가 상품 기다리기를 선택해 관리자 셀러 이관을 기다리는 상태 */
|
|
7
7
|
WAITING = "WAITING",
|
|
8
|
+
/** 이관 대기 중 환불이 완료되어 이관 처리가 종료된 상태 */
|
|
9
|
+
WAITING_REFUNDING = "WAITING_REFUNDING",
|
|
8
10
|
/** 다른 셀러 이관이 완료되어 환불 대기 워크플로가 종료된 상태 */
|
|
9
11
|
TRANSFERRED = "TRANSFERRED",
|
|
10
12
|
/** 이관 불가가 확정되어 환불 절차로 진행된 상태 */
|
|
@@ -20,6 +20,8 @@ var RefundWaitingAdminStatusEnum;
|
|
|
20
20
|
RefundWaitingAdminStatusEnum["PENDING"] = "PENDING";
|
|
21
21
|
/** 구매자가 상품 기다리기를 선택해 관리자 셀러 이관을 기다리는 상태 */
|
|
22
22
|
RefundWaitingAdminStatusEnum["WAITING"] = "WAITING";
|
|
23
|
+
/** 이관 대기 중 환불이 완료되어 이관 처리가 종료된 상태 */
|
|
24
|
+
RefundWaitingAdminStatusEnum["WAITING_REFUNDING"] = "WAITING_REFUNDING";
|
|
23
25
|
/** 다른 셀러 이관이 완료되어 환불 대기 워크플로가 종료된 상태 */
|
|
24
26
|
RefundWaitingAdminStatusEnum["TRANSFERRED"] = "TRANSFERRED";
|
|
25
27
|
/** 이관 불가가 확정되어 환불 절차로 진행된 상태 */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-croket-dev/amqp-access",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.277",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@yolo-croket-dev/domain": "0.2.44",
|
|
24
24
|
"@yolo-croket-dev/dto-v2": "0.2.23",
|
|
25
25
|
"@yolo-croket-dev/entity": "0.2.101",
|
|
26
|
-
"@yolo-croket-dev/entity-v2": "0.3.
|
|
26
|
+
"@yolo-croket-dev/entity-v2": "0.3.29",
|
|
27
27
|
"class-transformer": "^0.5.1",
|
|
28
28
|
"class-validator": "^0.13.2",
|
|
29
29
|
"dotenv": "^16.3.1"
|
package/payment-service/dto/ad-center-settle/query/get-ad-center-settles-for-google-sheet.dto.d.ts
CHANGED
|
@@ -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" | "publicId" | "couponInfo" | "pastStoreInfo" | "expectedSettleDateString" | "adType" | "adCenterStartDateString" | "adCenterEndDateString" | "actualSettleDateString" | "PInfoId" | "transactionInfo" | "subtractionSettleAmountInfo" | "bizMemo" | "financeMemo" | "settlementManagerInfo" | "googleSheetInfo">>;
|
|
3
|
+
declare const AdCenterSettleForGoogleSheet_base: import("@nestjs/common/interfaces").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: {
|