@yolo-croket-dev/amqp-access 0.7.54-jun.5 → 0.7.54-jun.7
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.
|
@@ -6,7 +6,10 @@ export declare class GetMyUserCardBillingDetailPayload {
|
|
|
6
6
|
/** 조회할 유저 카드 빌링 ID */
|
|
7
7
|
userCardBillingId: string;
|
|
8
8
|
}
|
|
9
|
-
export type UserCardBillingForBuyer = Pick<UserCardBillingEntity, '_id' | 'cardCompany' | 'cardNumberLast4' | 'isView' | 'regDate' | 'type' | 'userId'
|
|
9
|
+
export type UserCardBillingForBuyer = Pick<UserCardBillingEntity, '_id' | 'cardCompany' | 'cardNumberLast4' | 'isView' | 'regDate' | 'type' | 'userId'> & {
|
|
10
|
+
_id: string;
|
|
11
|
+
userId: string;
|
|
12
|
+
};
|
|
10
13
|
/**
|
|
11
14
|
* @description 유저 카드 정보 상세 조회 응답 Result
|
|
12
15
|
*/
|