@carsayo/types 1.1.89142 → 1.1.89144

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.
@@ -194,7 +194,9 @@ export interface OrderCommissionListData {
194
194
  created_at: Date;
195
195
  /** 정산 요청일 */
196
196
  asked_at: Date | null;
197
+ /** 정산 완료일 */
197
198
  paid_at: Date | null;
199
+ /** 취소일 */
198
200
  canceled_at: Date | null;
199
201
  manager: MemberShort;
200
202
  order: OrderInfo;
@@ -341,6 +343,29 @@ export interface DealerOrderListData extends OrderListData {
341
343
  isBookmarked: boolean;
342
344
  /** 작성 메모 존재 여부 */
343
345
  isMemo: boolean;
346
+ /** 주문 완료 후 수수료 정보 */
347
+ commission: {
348
+ id: number;
349
+ state: OrderCommissionState;
350
+ /** 정산 방법, 현재는 계좌이체, 가상계좌 두가지 */
351
+ method: OrderCommissionMethod | null;
352
+ /** 은행코드 */
353
+ bankCode: string | null;
354
+ /** 계좌주명 */
355
+ ownerName: string | null;
356
+ /** 계좌번호 */
357
+ accountNumber: string | null;
358
+ /** 관리자가 해당 주문에 대하여 입력한 수수료 */
359
+ price: number | null;
360
+ /** 수수료 정산 리스트에서는 계약 완료일로 사용하세요 */
361
+ created_at: Date;
362
+ /** 정산 요청일 */
363
+ asked_at: Date | null;
364
+ /** 정산 완료일 */
365
+ paid_at: Date | null;
366
+ /** 취소일 */
367
+ canceled_at: Date | null;
368
+ } | null;
344
369
  newCar?: {
345
370
  /** 할부 개월
346
371
  * 0일 경우 일시불입니다.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89142",
3
+ "version": "1.1.89144",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",