@yolo-croket-dev/amqp-access 0.7.45 → 0.7.46
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PurchasedInfoEntity } from '@yolo-croket-dev/entity-v2/purchased-info/purchased-info.entity';
|
|
2
|
+
import { AttributionHistoryEntity } from '@yolo-croket-dev/entity-v2/attribution-history/attribution-history.entity';
|
|
2
3
|
import { StoreEntity } from '@yolo-croket-dev/entity/src/store';
|
|
3
4
|
import { StoreItem } from '@yolo-croket-dev/entity/src/store-item';
|
|
4
5
|
import { UserEntity } from '@yolo-croket-dev/entity-v2/user/user.entity';
|
|
@@ -16,11 +17,13 @@ export declare class GetItemSaleInfosForSalesTeamByAtlasResult {
|
|
|
16
17
|
datas: SearchedPurchasedInfoForSaleInfo[];
|
|
17
18
|
}
|
|
18
19
|
export type SearchedStoreForSaleInfo = Pick<StoreEntity, '_id' | 'storeTitle' | 'adminId'>;
|
|
19
|
-
export type SearchedItemInfoForSaleInfo = Pick<StoreItem, '_id' | 'bookNums' | 'itemName'>;
|
|
20
|
+
export type SearchedItemInfoForSaleInfo = Pick<StoreItem, '_id' | 'bookNums' | 'itemName' | 'mainCategory' | 'subCategory' | 'brandInfo'>;
|
|
20
21
|
export type SearchedSellerInfoForSaleInfo = Pick<UserEntity, '_id' | 'username'>;
|
|
21
|
-
export type
|
|
22
|
+
export type SearchedAttributionHistoryForSaleInfo = Pick<AttributionHistoryEntity, 'lastExternalTouch'>;
|
|
23
|
+
export type SearchedPurchasedInfoForSaleInfo = Pick<PurchasedInfoEntity, '_id' | 'process' | 'itemId' | 'sellerId' | 'paidPrice' | 'pastName' | 'totalPrice' | 'paymentDate' | 'couponInfo' | 'usedCredit' | 'pOptionInfo' | 'proceedsInfo' | 'inflowInfo'> & {
|
|
22
24
|
searchedItemInfo: SearchedItemInfoForSaleInfo;
|
|
23
25
|
searchedSellerInfo: SearchedSellerInfoForSaleInfo;
|
|
24
26
|
searchedStoreInfo: SearchedStoreForSaleInfo;
|
|
27
|
+
searchedAttributionHistory?: SearchedAttributionHistoryForSaleInfo;
|
|
25
28
|
paginationToken: string;
|
|
26
29
|
};
|
package/package.json
CHANGED
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" | "couponInfo" | "publicId" | "pastStoreInfo" | "PInfoId" | "expectedSettleDateString" | "adType" | "adCenterStartDateString" | "adCenterEndDateString" | "actualSettleDateString" | "transactionInfo" | "subtractionSettleAmountInfo" | "bizMemo" | "financeMemo" | "settlementManagerInfo" | "googleSheetInfo">>;
|
|
4
4
|
/** 구글 시트용 광고센터정산 데이터 */
|
|
5
5
|
export declare class AdCenterSettleForGoogleSheet extends AdCenterSettleForGoogleSheet_base {
|
|
6
6
|
storeInfo: {
|