@yolo-croket-dev/amqp-access 0.7.47-jun.54 → 0.7.47-jun.56
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/purchasedinfos/query/search-seller-transaction-history-by-process.dto.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PurchasedProcessEnum } from '@yolo-croket-dev/entity';
|
|
2
|
-
import { PurchasedProcessV2Enum } from '@yolo-croket-dev/entity-v2';
|
|
2
|
+
import { PurchasedProcessV2Enum, PInfoTypeEnum } from '@yolo-croket-dev/entity-v2';
|
|
3
3
|
import { StoreItemKeyword } from '@yolo-croket-dev/dto-v2/user-service';
|
|
4
4
|
export declare class SearchSellerTransactionHistoryByProcessPayload {
|
|
5
5
|
/** 시작 날짜 */
|
|
@@ -113,6 +113,8 @@ export declare class SellerTransactionHistory {
|
|
|
113
113
|
isSabang?: boolean;
|
|
114
114
|
/** 상품 키워드 */
|
|
115
115
|
itemKeywords?: StoreItemKeyword[];
|
|
116
|
+
/** 결제 정보 타입 (예약 상품 구분) */
|
|
117
|
+
pInfoType?: PInfoTypeEnum;
|
|
116
118
|
}
|
|
117
119
|
export declare class SearchSellerTransactionHistoryByProcessResult {
|
|
118
120
|
sellerTransactionHistories: SellerTransactionHistory[];
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ import { StoreEntity } from '@yolo-croket-dev/entity-v2';
|
|
|
3
3
|
export declare class GetStoreItemBookmarksPayload {
|
|
4
4
|
lastBookmarkId?: string;
|
|
5
5
|
}
|
|
6
|
-
export interface StoreItemForBookmark extends Pick<StoreItemLegacyEntity, 'itemId' | 'storeId' | 'itemImg' | 'itemName' | 'itemPriceForBuyer' | 'remainCount' | 'bookNums' | 'stickerInfo' | 'mainCategory' | 'subCategory' | 'isAdultItem' | 'isDirect' | 'isShipping' | 'isPrepay' | 'isVisit' | 'isBundleShipping' | 'deliveryDate' | 'dueDateRemainDay' | 'isExistDueDate' | 'dueDate' | 'shippingFee' | 'expectedSendDays' | 'expectedDeliveryDays' | 'isShippingTerms' | 'isAbroadShipping' | 'area' | 'nation' | 'storeTitle' | 'maxDiscountCouponPriceInfo'> {
|
|
6
|
+
export interface StoreItemForBookmark extends Pick<StoreItemLegacyEntity, 'itemId' | 'storeId' | 'itemImg' | 'itemName' | 'itemPriceForBuyer' | 'remainCount' | 'bookNums' | 'stickerInfo' | 'mainCategory' | 'subCategory' | 'isAdultItem' | 'isDirect' | 'isShipping' | 'isPrepay' | 'isVisit' | 'isBundleShipping' | 'deliveryDate' | 'dueDateRemainDay' | 'isExistDueDate' | 'dueDate' | 'shippingFee' | 'expectedSendDays' | 'expectedDeliveryDays' | 'isShippingTerms' | 'isAbroadShipping' | 'area' | 'nation' | 'storeTitle' | 'maxDiscountCouponPriceInfo' | 'itemType'> {
|
|
7
7
|
}
|
|
8
8
|
export interface StoreForBookmark extends Pick<StoreEntity, 'storeTitle'> {
|
|
9
9
|
}
|