@carsayo/types 1.1.892010 → 1.1.892012

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,5 +1,5 @@
1
1
  import { ReqSellMyCarId } from "./dto";
2
- import { SellMyCarOrderAgencyCashflowStatus } from "./type";
2
+ import { SellMyCarCommissionExpenseProofStatus, SellMyCarOrderAgencyCashflowStatus } from "./type";
3
3
  /** 관리자 > 진단사 배정 요청 DTO */
4
4
  export interface ReqSetMyCarInspector extends ReqSellMyCarId {
5
5
  /** 진단사 이름 */
@@ -77,3 +77,8 @@ export interface ReqSetMyCarCashflow extends ReqSellMyCarId {
77
77
  deposit_request?: boolean;
78
78
  };
79
79
  }
80
+ /** 관리자 > 지출증빙자료 업데이트 DTO */
81
+ export interface ReqSetMyCarExpenseProof extends ReqSellMyCarId {
82
+ /** 지출증빙자료 처리 상태 */
83
+ expense_proof: Exclude<SellMyCarCommissionExpenseProofStatus, "submitted" | "request_edit">;
84
+ }
@@ -194,6 +194,7 @@ export interface SellCarComplexes {
194
194
  sell_car_provinces: {
195
195
  id: number;
196
196
  name: string;
197
+ name_short: string;
197
198
  };
198
199
  /** 매매단지 소속 시군구 */
199
200
  sell_car_cities: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892010",
3
+ "version": "1.1.892012",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",