@carsayo/types 1.1.891749 → 1.1.891751
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.
|
@@ -652,7 +652,7 @@ export interface CustomerCarInfo {
|
|
|
652
652
|
/**
|
|
653
653
|
* 쿠콘 차량 정보 (JSON String 형식, 클라이언트에서 파싱해서 사용)
|
|
654
654
|
* @note 쿠콘 차량 정보가 없을 경우 null
|
|
655
|
-
* @type JSON.parse(car_info)하면
|
|
655
|
+
* @type JSON.parse(car_info)하면 CooconUsedCarInfo를 따릅니다.
|
|
656
656
|
*/
|
|
657
657
|
car_info: string | null;
|
|
658
658
|
/**
|
|
@@ -183,12 +183,6 @@ export type RepairRequest = {
|
|
|
183
183
|
*/
|
|
184
184
|
딜리버리주소: RepairAddress | null;
|
|
185
185
|
};
|
|
186
|
-
/** 사고 장소 */
|
|
187
|
-
accidentPlace: string;
|
|
188
|
-
/** 충격의 정도 */
|
|
189
|
-
accidentDegree: string;
|
|
190
|
-
/** 사고 여부 */
|
|
191
|
-
accidentStyle: string;
|
|
192
186
|
damagedParts: CarPartitionKey[];
|
|
193
187
|
} | null;
|
|
194
188
|
엔진오일: {
|
|
@@ -28,8 +28,7 @@ export declare const RepairBidState: {
|
|
|
28
28
|
readonly canceled: "취소";
|
|
29
29
|
};
|
|
30
30
|
export type RepairBidState = keyof typeof RepairBidState;
|
|
31
|
-
export
|
|
32
|
-
export type RepairRequestType = (typeof RepairRequestType)[number];
|
|
31
|
+
export type RepairRequestType = (typeof RepairType)[keyof typeof RepairType];
|
|
33
32
|
export declare const CarPartitionKey: readonly ["앞범퍼", "뒷범퍼", "후드", "트렁크", "루프", "운전석 전도어", "운전석 후도어", "운전석 전펜더", "운전석 후펜더", "운전석 스텝", "조수석 전도어", "조수석 후도어", "조수석 전펜더", "조수석 후펜더", "조수석 스텝", "사이드미러/유리/휠/라이트"];
|
|
34
33
|
export type CarPartitionKey = (typeof CarPartitionKey)[number];
|
|
35
34
|
export type TireSize = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CarPartitionKey = exports.
|
|
3
|
+
exports.CarPartitionKey = exports.RepairBidState = exports.RepairState = exports.RepairType = void 0;
|
|
4
4
|
exports.RepairType = {
|
|
5
5
|
accident: "사고수리",
|
|
6
6
|
exterior: "외부수리",
|
|
@@ -28,12 +28,6 @@ exports.RepairBidState = {
|
|
|
28
28
|
reserve_canceled: "예약취소",
|
|
29
29
|
canceled: "취소",
|
|
30
30
|
};
|
|
31
|
-
exports.RepairRequestType = [
|
|
32
|
-
"사고수리",
|
|
33
|
-
"외부수리",
|
|
34
|
-
"엔진오일",
|
|
35
|
-
"타이어",
|
|
36
|
-
];
|
|
37
31
|
exports.CarPartitionKey = [
|
|
38
32
|
"앞범퍼",
|
|
39
33
|
"뒷범퍼",
|