@yolo-croket-dev/amqp-access 0.5.16 → 0.5.17
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/package.json
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
import { AdCenterSettle } from '@yolo-croket-dev/entity/src/ad-center-settle';
|
|
2
|
+
import { PurchasedInfoEntity } from '@yolo-croket-dev/entity-v2';
|
|
2
3
|
export declare class GetAdCenterSettlesForSellerTransactionPayload {
|
|
3
4
|
/** @description actualSettleDate 조회 시작일 - KST 일 00시 */
|
|
4
5
|
sDate: Date;
|
|
5
6
|
/** @description actualSettleDate 조회 종료일 - KST 일 00시 */
|
|
6
7
|
eDate: Date;
|
|
7
8
|
}
|
|
9
|
+
export interface AdCenterSettlePurchasedInfoForSellerTransaction extends Pick<PurchasedInfoEntity, '_id' | 'publicId'> {
|
|
10
|
+
}
|
|
11
|
+
export interface AdCenterSettleForSellerTransaction extends AdCenterSettle {
|
|
12
|
+
purchasedInfo: AdCenterSettlePurchasedInfoForSellerTransaction;
|
|
13
|
+
}
|
|
8
14
|
export interface GetAdCenterSettlesForSellerTransactionResult {
|
|
9
15
|
/** @description 기간내 정산된 내역 */
|
|
10
|
-
actualAdCenterSettles:
|
|
16
|
+
actualAdCenterSettles: AdCenterSettleForSellerTransaction[];
|
|
11
17
|
/** @description 예상 정산 내역 */
|
|
12
|
-
expectedAdCenterSettles:
|
|
18
|
+
expectedAdCenterSettles: AdCenterSettleForSellerTransaction[];
|
|
13
19
|
}
|