@carsayo/types 1.1.892014 → 1.1.892015

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.
@@ -104,6 +104,8 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
104
104
  * @note 현재 경고 개수는 penalties.filter((penalty) => penalty.is_warning).length로 확인 가능합니다.
105
105
  */
106
106
  penalties: CurrentDealerPenalty[];
107
+ /** 받은 경고 횟수 */
108
+ penalty_warning_count: number;
107
109
  /** 사업자 등록증 파일 */
108
110
  file_member_dealer_sell_car_business_certificate_idTofile: FileInfo | null;
109
111
  /** 사원증 파일 */
@@ -134,6 +136,13 @@ export interface UsedCarDealerMyselfInfo extends UsedCarDealerInfo {
134
136
  workingSidoId: SidoId | null;
135
137
  /** 알림설정 정보 */
136
138
  setting: Member["setting"];
139
+ /** 수수료 정보 */
140
+ commission: {
141
+ /** 납부 수수료 총액 */
142
+ total: number;
143
+ /** 미입금 수수료 총액 */
144
+ nonPaid: number;
145
+ };
137
146
  /** 추가 정보 (값 자유롭게 들어갈 수 있음)
138
147
  * member_dealer.additionalInfo에서 꺼내옵니다.
139
148
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892014",
3
+ "version": "1.1.892015",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",