@carsayo/types 1.1.839 → 1.1.841
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,35 +1,38 @@
|
|
|
1
1
|
import { InsuranceCompany } from "../insurance";
|
|
2
2
|
import { MemberGender } from "../member";
|
|
3
3
|
import { AccidentReportState, RepairShopWorkingStatus } from "./type";
|
|
4
|
-
/** 공업사 운영 시간
|
|
4
|
+
/** 공업사 운영 시간
|
|
5
|
+
* @note 휴무일 경우 null
|
|
6
|
+
* @note 시간은 HHdd형태 (1200, 1230, ...)
|
|
7
|
+
*/
|
|
5
8
|
export type RepairShopWorkingTime = {
|
|
6
9
|
mon?: {
|
|
7
|
-
start:
|
|
8
|
-
end:
|
|
10
|
+
start: string;
|
|
11
|
+
end: string;
|
|
9
12
|
};
|
|
10
13
|
tue?: {
|
|
11
|
-
start:
|
|
12
|
-
end:
|
|
14
|
+
start: string;
|
|
15
|
+
end: string;
|
|
13
16
|
};
|
|
14
17
|
wed?: {
|
|
15
|
-
start:
|
|
16
|
-
end:
|
|
18
|
+
start: string;
|
|
19
|
+
end: string;
|
|
17
20
|
};
|
|
18
21
|
thu?: {
|
|
19
|
-
start:
|
|
20
|
-
end:
|
|
22
|
+
start: string;
|
|
23
|
+
end: string;
|
|
21
24
|
};
|
|
22
25
|
fri?: {
|
|
23
|
-
start:
|
|
24
|
-
end:
|
|
26
|
+
start: string;
|
|
27
|
+
end: string;
|
|
25
28
|
};
|
|
26
29
|
sat?: {
|
|
27
|
-
start:
|
|
28
|
-
end:
|
|
30
|
+
start: string;
|
|
31
|
+
end: string;
|
|
29
32
|
};
|
|
30
33
|
sun?: {
|
|
31
|
-
start:
|
|
32
|
-
end:
|
|
34
|
+
start: string;
|
|
35
|
+
end: string;
|
|
33
36
|
};
|
|
34
37
|
/** 휴게시간 */
|
|
35
38
|
breakTime: {
|
|
@@ -156,6 +159,10 @@ export interface AccidentReport {
|
|
|
156
159
|
info_repair_finish?: AccidentReportData_Repair_Finish;
|
|
157
160
|
/** 리뷰 정보 */
|
|
158
161
|
review: AccidentReport_Review | null;
|
|
162
|
+
/** 파트너스 납부 수수료
|
|
163
|
+
* @note 주문 종료 시점에 공업사가 납부하여야 하는 계산된 금액
|
|
164
|
+
*/
|
|
165
|
+
commissionAmount: number | null;
|
|
159
166
|
/** 생성 일시 */
|
|
160
167
|
created_at: Date;
|
|
161
168
|
/** 수정 일시 */
|