@carsayo/types 1.1.891936 → 1.1.891938

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.
@@ -71,3 +71,10 @@ export interface ReqSellMyCarSetThumbnail {
71
71
  /** 썸네일 이미지 url */
72
72
  thumbnail_url: string;
73
73
  }
74
+ /** 관리자 > 메모 등록 */
75
+ export interface ReqSellMyCarSetAdminMemo {
76
+ /** 주문 ID (sell_car_order.id) */
77
+ sell_car_order_id: string;
78
+ /** 메모 */
79
+ content: string;
80
+ }
@@ -80,7 +80,7 @@ export interface SellMyCarRegistry {
80
80
  /** 참고사항 */
81
81
  info_note: string | null;
82
82
  /** 압류/저당 정보 */
83
- liens: SellMyCarRegistryLien[];
83
+ liens: SellMyCarRegistryLien[] | null;
84
84
  /** 생성일 */
85
85
  created_at: Date;
86
86
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891936",
3
+ "version": "1.1.891938",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",