@yolo-croket-dev/amqp-access 0.7.86-sj → 0.7.86
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/.claude/settings.local.json +11 -0
- package/order-server/dto/purchased-info.modules/purchased-info-admin/query/get-delivery-list-for-admin.dto.d.ts +0 -2
- package/order-server/dto/purchased-info.modules/purchased-info-admin/query/get-delivery-list-for-admin.dto.js +0 -5
- package/package.json +3 -3
- package/payment-service/dto/ad-center-settle/query/get-ad-center-settles-for-google-sheet.dto.d.ts +1 -1
|
@@ -29,8 +29,6 @@ export declare class GetDeliveryListForAdminPayload {
|
|
|
29
29
|
buyerId?: string;
|
|
30
30
|
/** 결제정보 ID로 직접 조회 (설정 시 날짜/범위 조건 무시) */
|
|
31
31
|
pInfoId?: string;
|
|
32
|
-
/** 주문번호로 직접 조회 (설정 시 날짜/범위 조건 무시) */
|
|
33
|
-
publicId?: string;
|
|
34
32
|
/** 정렬 기준 — 기본 '최근 결제일순' */
|
|
35
33
|
sortType?: GetDeliveryListForAdminSortTypeEnum;
|
|
36
34
|
/** 페이지 번호 — 기본 1 */
|
|
@@ -70,11 +70,6 @@ __decorate([
|
|
|
70
70
|
(0, class_validator_1.IsString)(),
|
|
71
71
|
__metadata("design:type", String)
|
|
72
72
|
], GetDeliveryListForAdminPayload.prototype, "pInfoId", void 0);
|
|
73
|
-
__decorate([
|
|
74
|
-
(0, class_validator_1.IsOptional)(),
|
|
75
|
-
(0, class_validator_1.IsString)(),
|
|
76
|
-
__metadata("design:type", String)
|
|
77
|
-
], GetDeliveryListForAdminPayload.prototype, "publicId", void 0);
|
|
78
73
|
__decorate([
|
|
79
74
|
(0, class_validator_1.IsOptional)(),
|
|
80
75
|
(0, class_validator_1.IsEnum)(GetDeliveryListForAdminSortTypeEnum),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-croket-dev/amqp-access",
|
|
3
|
-
"version": "0.7.86
|
|
3
|
+
"version": "0.7.86",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Yolo Co., Ltd.",
|
|
6
6
|
"description": "크로켓 amqp-access npm",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@nestjs/common": "^10.3.10",
|
|
21
21
|
"@yolo-croket-dev/core": "^1.9.3",
|
|
22
|
-
"@yolo-croket-dev/domain": "^0.2.
|
|
22
|
+
"@yolo-croket-dev/domain": "^0.2.33",
|
|
23
23
|
"@yolo-croket-dev/dto-v2": "^0.2.15",
|
|
24
24
|
"@yolo-croket-dev/entity": "^0.2.68",
|
|
25
25
|
"@yolo-croket-dev/entity-v2": "^0.2.138",
|
|
@@ -27,4 +27,4 @@
|
|
|
27
27
|
"class-validator": "^0.13.2",
|
|
28
28
|
"dotenv": "^16.3.1"
|
|
29
29
|
}
|
|
30
|
-
}
|
|
30
|
+
}
|
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" | "
|
|
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: {
|