@carsayo/types 1.1.824 → 1.1.826

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.
@@ -127,7 +127,7 @@ export interface AccidentReport {
127
127
  carNumber: string;
128
128
  state: AccidentReportState;
129
129
  /** 배정 공업사 정보 */
130
- repairShop: RepairShop;
130
+ repairShop: RepairShop | null;
131
131
  /** 보험사 정보 */
132
132
  insuranceCompany: InsuranceCompany;
133
133
  /** 견인 필요 여부 */
@@ -160,6 +160,8 @@ export interface AccidentReport {
160
160
  created_at: Date;
161
161
  /** 수정 일시 */
162
162
  updated_at: Date;
163
+ /** 접수 일시 */
164
+ accepted_at: Date | null;
163
165
  /** 취소 일시 */
164
166
  canceled_at: Date | null;
165
167
  /** 수리 완료 일시 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.824",
3
+ "version": "1.1.826",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",